Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

manifest.json 1.0KB

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "manifest_version": 2,
  3. "name": "AlwaysKillSticky",
  4. "version": "1.2.2",
  5. "description": "Get rid of sticky elements on websites - permanently!",
  6. "author": "Said Achmiz",
  7. "homepage_url": "https://git.sr.ht/~achmizs/AlwaysKillSticky.git",
  8. "permissions": [ "declarativeContent", "activeTab", "storage" ],
  9. "background": {
  10. "scripts": ["background.js"],
  11. "persistent": false
  12. },
  13. "content_scripts": [ {
  14. "matches": [ "http://*/*", "https://*/*" ],
  15. "run_at": "document_start",
  16. "js": [ "functions.js", "contentScript.js" ]
  17. }
  18. ],
  19. "page_action": {
  20. "default_popup": "popup.html",
  21. "default_title": "AlwaysKillSticky - Click the icon to control sticky-killing on this site!",
  22. "default_icon": {
  23. "16": "images/ASK_on_16.png",
  24. "32": "images/ASK_on_32.png",
  25. "48": "images/ASK_on_48.png",
  26. "128": "images/ASK_on_128.png"
  27. }
  28. },
  29. "icons": {
  30. "16": "images/ASK_on_16.png",
  31. "32": "images/ASK_on_32.png",
  32. "48": "images/ASK_on_48.png",
  33. "128": "images/ASK_on_128.png"
  34. },
  35. "options_page": "options.html"
  36. }