aboutsummaryrefslogtreecommitdiff
path: root/manifest.json
diff options
context:
space:
mode:
authorWojtek Kosior <wk@koszkonutek-tmp.pl.eu.org>2021-05-10 18:07:05 +0200
committerWojtek Kosior <wk@koszkonutek-tmp.pl.eu.org>2021-05-10 18:18:52 +0200
commit01937dc9d5215ef96ce756e3ccda51bf29032f58 (patch)
tree609ec5bb48c692796520f7982c06b30633038588 /manifest.json
downloadbrowser-extension-01937dc9d5215ef96ce756e3ccda51bf29032f58.tar.gz
browser-extension-01937dc9d5215ef96ce756e3ccda51bf29032f58.zip
initial commit
Diffstat (limited to 'manifest.json')
-rw-r--r--manifest.json60
1 files changed, 60 insertions, 0 deletions
diff --git a/manifest.json b/manifest.json
new file mode 100644
index 0000000..d9ff113
--- /dev/null
+++ b/manifest.json
@@ -0,0 +1,60 @@
+{
+ "manifest_version": 2,
+ "name": "My extension",
+ "short_name": "Myext",
+ "version": "0.0.0",
+ "author": "various",
+ "description": "Kill the web&js",
+ "applications": {
+ "gecko": {
+ "id": "{6fe13369-88e9-440f-b837-5012fb3bedec}",
+ "strict_min_version": "60.0"
+ }
+ },
+ "icons":{
+ "64": "icons/myext.png"
+ },
+ "permissions": [
+ "contextMenus",
+ "webRequest",
+ "webRequestBlocking",
+ "activeTab",
+ "notifications",
+ "sessions",
+ "storage",
+ "tabs",
+ "<all_urls>"
+ ],
+ "browser_action": {
+ "browser_style": true,
+ "default_icon": {
+ "64": "icons/myext.png"
+ },
+ "default_title": "Myext",
+ "default_popup": "html/display-panel.html"
+ },
+ "options_ui": {
+ "page": "html/options.html",
+ "open_in_tab": true
+ },
+ "web_accessible_resources": [
+ "/common/connection_types.mjs",
+ "/common/once.mjs",
+ "/common/browser.mjs",
+ "/content/page_actions.mjs"
+ ],
+ "background": {
+ "page": "background/background.html"
+ },
+ "content_scripts": [
+ {
+ "run_at": "document_start",
+ "matches": ["<all_urls>"],
+ "match_about_blank": true,
+ "all_frames": true,
+ "js": [
+ "content/main.js"
+ ]
+ }
+ ]
+}