Further corrections to manifest

This commit is contained in:
Said Achmiz 2019-02-02 16:20:47 -05:00
parent 3d2a4cb04b
commit 422f4a7427

View File

@ -1,35 +1,44 @@
{ {
"manifest_version": 2, "manifest_version": 2,
"name": "AlwaysKillSticky", "name": "AlwaysKillSticky",
"version": "1.0.1", "version": "1.0.1",
"description": "Get rid of sticky elements on websites - permanently!", "description": "Get rid of sticky elements on websites - permanently!",
"author": "Said Achmiz", "author": "Said Achmiz",
"homepage_url": "https://git.sr.ht/~achmizs/AlwaysKillSticky.git", "browser_specific_settings": {
"permissions": [ "activeTab", "storage" ], "gecko": {
"background": { "id": "AlwaysKillSticky@saidachmiz.net",
"scripts": ["background.js"] "strict_min_version": "57.0"
}
}, },
"content_scripts": [ { "homepage_url": "https://git.sr.ht/~achmizs/AlwaysKillSticky.git",
"matches": [ "http://*/*", "https://*/*" ], "permissions": [ "activeTab", "storage" ],
"run_at": "document_end", "background": {
"js": [ "functions.js", "contentScript.js" ] "scripts": ["background.js"]
},
"content_scripts": [ {
"matches": [ "http://*/*", "https://*/*" ],
"run_at": "document_end",
"js": [ "functions.js", "contentScript.js" ]
} }
], ],
"page_action": { "page_action": {
"default_popup": "popup.html", "default_popup": "popup.html",
"default_title": "AlwaysKillSticky - Click the icon to control sticky-killing on this site!", "default_title": "AlwaysKillSticky - Click the icon to control sticky-killing on this site!",
"default_icon": { "default_icon": {
"16": "images/ASK_on_16.png", "16": "images/ASK_on_16.png",
"32": "images/ASK_on_32.png", "32": "images/ASK_on_32.png",
"48": "images/ASK_on_48.png", "48": "images/ASK_on_48.png",
"128": "images/ASK_on_128.png" "128": "images/ASK_on_128.png"
} }
}, },
"icons": { "icons": {
"16": "images/ASK_on_16.png", "16": "images/ASK_on_16.png",
"32": "images/ASK_on_32.png", "32": "images/ASK_on_32.png",
"48": "images/ASK_on_48.png", "48": "images/ASK_on_48.png",
"128": "images/ASK_on_128.png" "128": "images/ASK_on_128.png"
}, },
"options_ui": "options.html" "options_ui": {
"page": "options.html",
"open_in_tab": true
}
} }