manifest-firefox.json 702 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "__MSG_extensionName__",
  3. "description": "__MSG_extensionDesc__",
  4. "default_locale": "en",
  5. "version": "2.1.0.3",
  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. }