| 123456789101112131415161718192021222324252627282930 |
- {
- "manifest_version": 2,
- "name": "My Playlist Extension",
- "version": "1.0",
- "description": "An extension to manage youtube videos",
- "permissions": [
- "activeTab",
- "tabs",
- "storage",
- "contextMenus",
- "notifications",
- "webNavigation",
- "clipboardWrite",
- "<all_urls>"
- ],
- "browser_action": {
- "default_title": "My Playlist Extension",
- "default_popup": "popup/popup.html"
- },
- "background": {
- "scripts": ["shared/playlist-utils.js", "background.js"]
- },
- "content_scripts": [
- {
- "matches": ["https://*.youtube.com/*"],
- "js": ["content_scripts/content.js"]
- }
- ]
- }
|