manifest.json 614 B

1234567891011121314151617181920212223242526272829
  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. "<all_urls>"
  14. ],
  15. "browser_action": {
  16. "default_title": "My Playlist Extension",
  17. "default_popup": "popup/popup.html"
  18. },
  19. "background": {
  20. "scripts": ["shared/playlist-utils.js", "background.js"]
  21. },
  22. "content_scripts": [
  23. {
  24. "matches": ["https://*.youtube.com/*"],
  25. "js": ["content_scripts/content.js"]
  26. }
  27. ]
  28. }