Skip to content

Quickly access your required data from extension and boost your development speed.

License

Notifications You must be signed in to change notification settings

himanshuramavat/quick-helper-chrome-ext

 
 

Repository files navigation

Quick Helper - Chrome Extension

Easily access the data you need to speed up your development work.

Setup

Download the Extension

Load the Extension in Chrome:

  1. Open Chrome and go to chrome://extensions/.
  2. Turn on Developer mode in the top right corner.
  3. Click on Load unpacked and choose the folder where you saved the extension.

Load the Extension in Firefox:

  1. Open Firefox and go to about:debugging#/runtime/this-firefox.
  2. Click on Load Temporary Add-on… and select manifest.json from the extension folder.

API Data

We use some sample data from JSONBin to get started.

const apiUrl = 'https://api.jsonbin.io/v3/b/670101afacd3cb34a8919055';

If you want to use your own data, follow these steps:

Steps:
  1. Go to JSONBin and sign up.
  2. Create a new bin with your JSON data.
  3. JSONBin will give you an API endpoint to access this data.
  4. Replace the apiUrl with your new API link.

API Response Format

Make sure your API response looks like this:

[
  {
    "section": "Section-1",
    "data":[
        {
          "key": "######",
          "value": "######"
        },
        {
          "key": "######",
          "value": "######"
        },
        .......
      ]
    },
  {
    "section": "Section-2",
    "data":[
      {
        "key": "######",
        "value": "######"
      },
      {
        "key": "######",
        "value": "######"
      },
      .......
    ]
  },
  .......
]

About

Quickly access your required data from extension and boost your development speed.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 75.4%
  • CSS 17.6%
  • HTML 7.0%