Provides better experience for using the Hoppscotch web app.
Haven't used Hoppscotch ? It's an amazing quick API Request Builder.
Try it at https://hoppscotch.io/ !!!
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "Hoppscotch Browser Extension",
"version": "0.37",
"description": "Provides more capabilities for Hoppscotch",
"icons": {
"16": "icons/icon-16x16.png",
"48": "icons/icon-48x48.png",
"128": "icons/icon-128x128.png"
},
"action": {
"default_title": "Hoppscotch Extension",
"default_popup": "popup.html"
},
"permissions": [
"storage",
"tabs",
"cookies",
"scripting"
],
"host_permissions": [
"<all_urls>"
],
"web_accessible_resources": [
{
"resources": [
"*.js.map"
],
"matches": [
"<all_urls>"
]
}
],
"background": {
"scripts": [
"index.js"
]
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
},
"content_security_policy": {
"extension_pages": "script-src 'self'"
}
}