manifest-chrome.json 921 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "__MSG_extensionName__",
  3. "description": "__MSG_extensionDesc__",
  4. "default_locale": "en",
  5. "version": "3.0.0.0",
  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": ["storage"],
  16. "action": {
  17. "default_popup": "popup.html"
  18. },
  19. "content_scripts": [
  20. {
  21. "matches": [
  22. "*://youtube.com/*",
  23. "*://www.youtube.com/*",
  24. "*://m.youtube.com/*"
  25. ],
  26. "exclude_matches": ["*://*.music.youtube.com/*"],
  27. "js": ["ryd.content-script.js"],
  28. "css": ["content-style.css"]
  29. }
  30. ],
  31. "externally_connectable": {
  32. "matches": ["*://*.youtube.com/*"]
  33. },
  34. "web_accessible_resources": [
  35. {
  36. "resources": ["ryd.script.js"],
  37. "matches": ["*://*.youtube.com/*"]
  38. }
  39. ]
  40. }