diff options
author | sameerasw <[email protected]> | 2025-04-10 21:46:01 +0530 |
---|---|---|
committer | sameerasw <[email protected]> | 2025-04-10 21:46:01 +0530 |
commit | ef561a67101def64da3150067c562d358bb8d802 (patch) | |
tree | 9ac9ed10ae814f536c76af4bfea00e935b8bdfd7 /manifest.json | |
parent | 02950d3ba50e3db6ac4c4a3f61cec1117f933cde (diff) |
Initial commit for performance improvements
Diffstat (limited to 'manifest.json')
-rw-r--r-- | manifest.json | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/manifest.json b/manifest.json index 92a8578..3872bfc 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Zen Internet", - "version": "1.5.0", + "version": "1.6.0", "description": "Inject custom css from my repository in real time", "browser_specific_settings": { "gecko": { @@ -17,7 +17,9 @@ "storage", "tabs", "<all_urls>", - "webNavigation" + "webNavigation", + "webRequest", + "webRequestBlocking" ], "browser_action": { "default_popup": "popup/popup.html", @@ -25,18 +27,20 @@ }, "background": { "scripts": ["background.js"], - "persistent": false + "persistent": true }, "content_scripts": [ { "matches": ["<all_urls>"], "js": ["inject-css.js"], - "run_at": "document_start" + "run_at": "document_start", + "all_frames": true } ], "web_accessible_resources": [ "data-viewer/data-viewer.html", "data-viewer/data-viewer.js", - "data-viewer/data-viewer.css" + "data-viewer/data-viewer.css", + "styling/*" ] } |