manifest-chrome.json 929 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "__MSG_extensionName__",
  3. "description": "__MSG_extensionDesc__",
  4. "default_locale": "en",
  5. "version": "3.0.0.1",
  6. "manifest_version": 3,
  7. "background": {
  8. "service_worker": "ryd.background.js"
  9. },
  10. "icons": {
  11. "48": "icons/icon48.png",
  12. "128": "icons/icon128.png"
  13. },
  14. "host_permissions": ["*://*.youtube.com/*"],
  15. "permissions": [
  16. "storage"
  17. ],
  18. "action": {
  19. "default_popup": "popup.html"
  20. },
  21. "content_scripts": [
  22. {
  23. "matches": [
  24. "*://youtube.com/*",
  25. "*://www.youtube.com/*",
  26. "*://m.youtube.com/*"
  27. ],
  28. "exclude_matches": ["*://*.music.youtube.com/*"],
  29. "js": ["ryd.content-script.js"],
  30. "css": ["content-style.css"]
  31. }
  32. ],
  33. "externally_connectable": {
  34. "matches": ["*://*.youtube.com/*"]
  35. },
  36. "web_accessible_resources": [
  37. {
  38. "resources": ["ryd.script.js"],
  39. "matches": ["*://*.youtube.com/*"]
  40. }
  41. ]
  42. }