manifest-firefox.json 846 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "__MSG_extensionName__",
  3. "description": "__MSG_extensionDesc__",
  4. "default_locale": "en",
  5. "version": "3.0.0.1",
  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": ["activeTab", "*://*.youtube.com/*", "storage", "*://returnyoutubedislikeapi.com/*"],
  15. "browser_action": {
  16. "default_popup": "popup.html"
  17. },
  18. "content_scripts": [
  19. {
  20. "matches": ["*://*.youtube.com/*"],
  21. "exclude_matches": ["*://*.music.youtube.com/*"],
  22. "run_at": "document_idle",
  23. "css": ["content-style.css"],
  24. "js": ["ryd.content-script.js"]
  25. }
  26. ]
  27. // ,
  28. // "browser_specific_settings": {
  29. // "gecko": {
  30. // "id": "addon@example.com",
  31. // "strict_min_version": "42.0"
  32. // }
  33. // }
  34. }