Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

manifest.json 1005B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "manifest_version": 2,
  3. "name": "AlwaysKillSticky",
  4. "version": "0.5",
  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. {
  15. "matches": [ "http://*/*", "https://*/*" ],
  16. "run_at": "document_end",
  17. "js": [ "functions.js", "contentScript.js" ]
  18. }
  19. ],
  20. "page_action": {
  21. "default_popup": "popup.html",
  22. "default_title": "AlwaysKillSticky - Click the icon to control sticky-killing on this site!",
  23. "default_icon": {
  24. "16": "images/ASK16.png",
  25. "32": "images/ASK32.png",
  26. "48": "images/ASK48.png",
  27. "128": "images/ASK128.png"
  28. }
  29. },
  30. "icons": {
  31. "16": "images/ASK16.png",
  32. "32": "images/ASK32.png",
  33. "48": "images/ASK48.png",
  34. "128": "images/ASK128.png"
  35. },
  36. "options_page": "options.html"
  37. }