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