manifest-firefox.json 881 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "__MSG_extensionName__",
  3. "description": "__MSG_extensionDesc__",
  4. "default_locale": "en",
  5. "version": "3.0.0.0",
  6. "manifest_version": 2,
  7. "background": {
  8. "scripts": ["ryd.background.js"]
  9. },
  10. "icons": {
  11. "48": "icons/icon48.png",
  12. "128": "icons/icon128.png"
  13. },
  14. "permissions": [
  15. "activeTab",
  16. "*://*.youtube.com/*",
  17. "storage",
  18. "*://returnyoutubedislikeapi.com/*"
  19. ],
  20. "browser_action": {
  21. "default_popup": "popup.html"
  22. },
  23. "content_scripts": [
  24. {
  25. "matches": ["*://*.youtube.com/*"],
  26. "exclude_matches": ["*://*.music.youtube.com/*"],
  27. "run_at": "document_idle",
  28. "css": ["content-style.css"],
  29. "js": ["ryd.content-script.js"]
  30. }
  31. ]
  32. // ,
  33. // "browser_specific_settings": {
  34. // "gecko": {
  35. // "id": "addon@example.com",
  36. // "strict_min_version": "42.0"
  37. // }
  38. // }
  39. }