manifest.json 786 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "description": "Returns ability to see dislikes",
  3. "version": "0.0.0.7",
  4. "manifest_version": 3,
  5. "background": {
  6. "service_worker": "background.js"
  7. },
  8. "host_permissions": ["*://*.youtube.com/*"],
  9. "action": {
  10. "default_popup": "popup.html"
  11. },
  12. "oauth2": {
  13. "client_id": "292556337651-kbmq2pduaejrol457a5s1089ut6ug0u9.apps.googleusercontent.com",
  14. "scopes": ["openid"]
  15. },
  16. "content_scripts": [
  17. {
  18. "matches": ["*://*.youtube.com/*"],
  19. "js": ["content-script.js"],
  20. "run_at": "document_start",
  21. "css": ["content-style.css"]
  22. }
  23. ],
  24. "externally_connectable": {
  25. "matches": ["*://*.youtube.com/*"]
  26. },
  27. "web_accessible_resources": [
  28. {
  29. "resources": ["script.js"],
  30. "matches": ["*://*.youtube.com/*"]
  31. }
  32. ]
  33. }