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