manifest.json 776 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "Youtube Dislike Button",
  3. "description": "Returns ability to see dislikes",
  4. "version": "0.0.0.3",
  5. "manifest_version": 3,
  6. "background": {
  7. "service_worker": "background.js"
  8. },
  9. "host_permissions": ["*://*.youtube.com/*"],
  10. "action": {
  11. "default_popup": "popup.html"
  12. },
  13. "oauth2": {
  14. "client_id": "292556337651-kbmq2pduaejrol457a5s1089ut6ug0u9.apps.googleusercontent.com",
  15. "scopes": ["openid"]
  16. },
  17. "content_scripts": [
  18. {
  19. "matches": ["*://*.youtube.com/*"],
  20. "js": ["content-script.js"],
  21. "run_at": "document_start"
  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. }