freshroute-server
Version:
Local development server for FreshRoute extension with API mocking and extended functionality
47 lines • 992 B
JSON
{
"manifest_version": 3,
"name": "FreshRoute",
"version": "1.0.0",
"description": "Chrome extension to rewrite URLs and modify headers with regex support",
"permissions": [
"declarativeNetRequest",
"declarativeNetRequestWithHostAccess",
"storage",
"activeTab",
"scripting",
"webRequest",
"tabs",
"cookies",
"debugger"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content-script.js"],
"run_at": "document_start"
}
],
"action": {
"default_popup": "popup.html",
"default_title": "FreshRoute"
},
"options_page": "options.html",
"declarative_net_request": {
"rule_resources": [{
"id": "ruleset_1",
"enabled": true,
"path": "rules.json"
}]
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
}