Skip to content

Commit

Permalink
[enh] try to comply both ff/chrome manifest requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
asciimoo committed Aug 26, 2024
1 parent d706cf4 commit 2301d2c
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions ext/src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "omnom",
"version": "0.10.0",
"version": "0.11.0",
"manifest_version": 3,
"description": "A bookmarking extension for omnom services.",
"description": "Bookmarking & snapshotting extension for omnom services.",
"content_scripts": [
{
"js": [
Expand All @@ -21,7 +21,8 @@
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js"
"service_worker": "background.js",
"scripts": ["background.js"]
},
"icons": {
"256": "icons/omnom256.png",
Expand All @@ -37,9 +38,18 @@
"*://*/*"
],
"permissions": [
"tabs",
"activeTab",
"storage",
"scripting"
]
],
"browser_specific_settings": {
"gecko": {
"id": "{f0bca7ce-0cda-41dc-9ea8-126a50fed280}",
"strict_min_version": "110.0"
},
"gecko_android": {
"id": "{f0bca7ce-0cda-41dc-9ea8-126a50fed280}",
"strict_min_version": "110.0"
}
}
}

0 comments on commit 2301d2c

Please sign in to comment.