Files
Vineless/manifest.json
Ingan121 5fe27eea28 * Finish the webm initType support
* Add active state indicator
* Prevent polluting the global namespace
2025-07-14 23:21:37 +09:00

55 lines
1.1 KiB
JSON

{
"manifest_version": 3,
"name": "Vineless",
"version": "1.3",
"description": "Play protected contents without a real CDM",
"permissions": [
"activeTab",
"tabs",
"storage",
"unlimitedStorage",
"webRequest"
],
"host_permissions": [
"*://*/*"
],
"action": {
"default_popup": "panel/panel.html",
"default_icon": {
"128": "images/icon.png"
}
},
"icons": {
"128": "images/icon.png"
},
"background": {
"scripts": ["background.js"],
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["message_proxy.js"],
"run_at": "document_start",
"world": "ISOLATED",
"all_frames": true,
"match_about_blank": true
},
{
"matches": ["<all_urls>"],
"js": ["content_script.js"],
"run_at": "document_start",
"world": "MAIN",
"all_frames": true,
"match_about_blank": true
}
],
"browser_specific_settings": {
"gecko": {
"id": "vineless@ingan121.com",
"strict_min_version": "58.0"
}
}
}