manifest.json 685 B

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