Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "API console extension",
"version": "0.1.3",
"description": "API Console extension to proxy HTTP requests to the documented API.",
"author": "Pawel Psztyc <[email protected]>",
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"src\/page-proxy.js"
],
"run_at": "document_start"
}
],
"background": {
"service_worker": "src\/service.js",
"type": "module"
},
"icons": {
"16": "assets\/icon-16x16.png",
"48": "assets\/icon-48x48.png",
"128": "assets\/icon-128x128.png"
},
"host_permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}