Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

manifest.json 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "manifest_version": 2,
  3. "name": "AlwaysKillSticky",
  4. "version": "1.2.3",
  5. "description": "Get rid of sticky elements on websites - permanently!",
  6. "author": "Said Achmiz",
  7. "browser_specific_settings": {
  8. "gecko": {
  9. "id": "AlwaysKillSticky@saidachmiz.net",
  10. "strict_min_version": "57.0"
  11. }
  12. },
  13. "homepage_url": "https://git.sr.ht/~achmizs/AlwaysKillSticky.git",
  14. "permissions": [ "activeTab", "storage" ],
  15. "background": {
  16. "scripts": [ "background.js" ]
  17. },
  18. "content_scripts": [ {
  19. "matches": [ "http://*/*", "https://*/*" ],
  20. "run_at": "document_start",
  21. "js": [ "functions.js", "contentScript.js" ]
  22. }
  23. ],
  24. "browser_action": {
  25. "default_popup": "popup.html",
  26. "default_title": "AlwaysKillSticky - Click the icon to control sticky-killing on this site!",
  27. "default_icon": {
  28. "19": "images/AKS_on_19.png",
  29. "38": "images/AKS_on_38.png"
  30. }
  31. },
  32. "icons": {
  33. "48": "images/AKS_on_48.png",
  34. "96": "images/AKS_on_96.png"
  35. },
  36. "options_ui": {
  37. "page": "options.html",
  38. "open_in_tab": true
  39. }
  40. }