Easily access the data you need to speed up your development work.
- Download the extension from this link: Download Quick Helper.
- Open Chrome and go to
chrome://extensions/
. - Turn on
Developer mode
in the top right corner. - Click on
Load unpacked
and choose the folder where you saved the extension.
- Open Firefox and go to
about:debugging#/runtime/this-firefox
. - Click on
Load Temporary Add-on…
and selectmanifest.json
from the extension folder.
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:
- Go to JSONBin and sign up.
- Create a new bin with your JSON data.
- JSONBin will give you an API endpoint to access this data.
- Replace the
apiUrl
with your new API link.
Make sure your API response looks like this:
[
{
"section": "Section-1",
"data":[
{
"key": "######",
"value": "######"
},
{
"key": "######",
"value": "######"
},
.......
]
},
{
"section": "Section-2",
"data":[
{
"key": "######",
"value": "######"
},
{
"key": "######",
"value": "######"
},
.......
]
},
.......
]