manifest.json 636 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "manifest_version": 2,
  3. "name": "My Playlist Extension",
  4. "version": "1.0",
  5. "description": "An extension to manage youtube videos",
  6. "permissions": [
  7. "activeTab",
  8. "tabs",
  9. "storage",
  10. "contextMenus",
  11. "notifications",
  12. "webNavigation",
  13. "clipboardWrite",
  14. "<all_urls>"
  15. ],
  16. "browser_action": {
  17. "default_title": "My Playlist Extension",
  18. "default_popup": "popup/popup.html"
  19. },
  20. "background": {
  21. "scripts": ["shared/playlist-utils.js", "background.js"]
  22. },
  23. "content_scripts": [
  24. {
  25. "matches": ["https://*.youtube.com/*"],
  26. "js": ["content_scripts/content.js"]
  27. }
  28. ]
  29. }