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.

12345678910111213141516171819202122232425262728293031
  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. "page_action": {
  17. "default_icon": {
  18. "16": "images/ASK16.png",
  19. "32": "images/ASK32.png",
  20. "48": "images/ASK48.png",
  21. "128": "images/ASK128.png"
  22. }
  23. },
  24. "icons": {
  25. "16": "images/ASK16.png",
  26. "32": "images/ASK32.png",
  27. "48": "images/ASK48.png",
  28. "128": "images/ASK128.png"
  29. },
  30. "options_page": "options.html"
  31. }