| 1234567891011121314151617 |
- {
- "manifest_version": 2,
- "name": "AlwaysKillSticky",
- "version": "0.3",
- "description": "Get rid of sticky elements on websites - permanently!",
- "author": "Said Achmiz",
- "homepage_url": "https://wiki.obormot.net/Main/AlwaysKillSticky",
- "permissions": [ "activeTab", "storage" ],
- "content_scripts": [
- {
- "matches": [ "http://*/*", "https://*/*" ],
- "run_at": "document_end",
- "js": [ "contentScript.js" ]
- }
- ],
- "options_page": "options.html"
- }
|