You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617
  1. {
  2. "manifest_version": 2,
  3. "name": "AlwaysKillSticky",
  4. "version": "0.3",
  5. "description": "Get rid of sticky elements on websites - permanently!",
  6. "author": "Said Achmiz",
  7. "homepage_url": "https://wiki.obormot.net/Main/AlwaysKillSticky",
  8. "permissions": [ "activeTab", "storage" ],
  9. "content_scripts": [
  10. {
  11. "matches": [ "http://*/*", "https://*/*" ],
  12. "run_at": "document_end",
  13. "js": [ "contentScript.js" ]
  14. }
  15. ],
  16. "options_page": "options.html"
  17. }