manifest-safari.json 796 B

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