metube/extension/manifest.json
PepegaSan ce30a9ea80 Add browser extension to mark clip times and queue to MeTube
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-24 02:22:29 +02:00

27 lines
665 B
JSON

{
"manifest_version": 3,
"name": "MeTube Clip Marker",
"version": "0.2.9",
"description": "Mark clip times on any page with a video element and send them to your MeTube instance.",
"permissions": ["storage", "activeTab", "scripting"],
"host_permissions": ["<all_urls>"],
"action": {
"default_popup": "popup.html",
"default_title": "MeTube clips"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"],
"run_at": "document_idle"
}
]
}