manifest.json 706 B

12345678910111213141516171819202122232425262728293031323334
  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. "webNavigation",
  17. "<all_urls>"
  18. ],
  19. "browser_action": {
  20. "default_icon": "icons/icon-48.png",
  21. "default_title": "My Playlist Extension",
  22. "default_popup": "popup/popup.html"
  23. },
  24. "background": {
  25. "scripts": ["background.js"]
  26. },
  27. "content_scripts": [
  28. {
  29. "matches": ["https://*.youtube.com/*"],
  30. "js": ["content_scripts/content.js"]
  31. }
  32. ]
  33. }