manifest.json 632 B

12345678910111213141516171819202122232425
  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. "permissions": ["activeTab", "scripting"],
  10. "host_permissions": ["*://*.youtube.com/*"],
  11. "action": {
  12. "default_popup": "popup.html"
  13. },
  14. "oauth2": {
  15. "client_id": "292556337651-kbmq2pduaejrol457a5s1089ut6ug0u9.apps.googleusercontent.com",
  16. "scopes": ["openid"]
  17. },
  18. "content_scripts": [
  19. {
  20. "matches": ["*://*.youtube.com/*"],
  21. "js": ["content-script.js"],
  22. "run_at": "document_idle"
  23. }
  24. ]
  25. }