manifest.json 822 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "Return YouTube Dislike",
  3. "description": "Returns ability to see dislikes",
  4. "version": "0.0.0.7",
  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. "css": ["content-style.css"]
  23. }
  24. ],
  25. "externally_connectable": {
  26. "matches": ["*://*.youtube.com/*"]
  27. },
  28. "web_accessible_resources": [
  29. {
  30. "resources": ["script.js"],
  31. "matches": ["*://*.youtube.com/*"]
  32. }
  33. ]
  34. }