diff options
author | sameerasw <[email protected]> | 2025-02-25 15:20:19 +0530 |
---|---|---|
committer | sameerasw <[email protected]> | 2025-02-25 15:20:19 +0530 |
commit | 36cb8d72865b1ab5cbcb008f939d916dfd1d206d (patch) | |
tree | cbf9efffce76a34b2230826c50e4612aea482d7f /manifest.json | |
parent | e36e4ce96399db97f80c8833fa6ef2982a249e51 (diff) |
Added the website mapper and automatic loading and fetching of css styles with the ability to disable as well
Diffstat (limited to 'manifest.json')
-rw-r--r-- | manifest.json | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/manifest.json b/manifest.json index 41693a4..e4de56c 100644 --- a/manifest.json +++ b/manifest.json @@ -1,8 +1,8 @@ { "manifest_version": 2, - "name": "Transparent Zen", - "version": "0.1.10", - "description": "Inject custom styles to make your favorite websites transparent.", + "name": "Zen Internet", + "version": "0.2.0", + "description": "Inject custom css from my repository in real time", "browser_specific_settings": { "gecko": { "id": "{74186d10-f6f2-4f73-b33a-83bb72e50654}" @@ -12,15 +12,10 @@ "48": "assets/images/logo_48.png", "96": "assets/images/logo_96.png" }, - "permissions": [ - "activeTab", - "storage", - "tabs", - "<all_urls>" - ], + "permissions": ["activeTab", "storage", "tabs", "<all_urls>"], "browser_action": { "default_popup": "popup/popup.html", - "default_title": "Transparent Zen" + "default_title": "Zen Internet" }, "background": { "scripts": ["background.js"], @@ -28,7 +23,7 @@ }, "content_scripts": [ { - "matches": ["*://*.github.com/*"], + "matches": ["<all_urls>"], "js": ["inject-css.js"], "run_at": "document_start" } |