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": "RequestKit", "description": "Advanced Chrome extension for injecting custom headers with powerful Variable System, pattern matching, and testing tools", "version": "1.0.0", "permissions": [ "declarativeNetRequest", "storage", "contextMenus", "activeTab", "notifications" ], "host_permissions": [ "<all_urls>" ], "background": { "service_worker": "src\/background\/service-worker.js", "type": "module" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "src\/content\/content.js" ], "run_at": "document_start" } ], "devtools_page": "src\/devtools\/devtools.html", "action": { "default_popup": "src\/popup\/index.html", "default_title": "RequestKit", "default_icon": { "16": "assets\/icons\/icon-16.png", "32": "assets\/icons\/icon-32.png", "48": "assets\/icons\/icon-48.png", "128": "assets\/icons\/icon-128.png" } }, "options_page": "src\/options\/index.html", "icons": { "16": "assets\/icons\/icon-16.png", "32": "assets\/icons\/icon-32.png", "48": "assets\/icons\/icon-48.png", "128": "assets\/icons\/icon-128.png" }, "web_accessible_resources": [ { "resources": [ "src\/content\/injected-script.js" ], "matches": [ "<all_urls>" ] } ], "declarative_net_request": { "rule_resources": [ { "id": "ruleset_1", "enabled": true, "path": "rules.json" } ] } }