Files
Vineless/manifest.json
Ingan121 36df571076 * Fix audio/video codec support detection to check for real browser support for them
* Fix logic error when comparing the key system name
* Fix for services that checks all of the availalbe kids in keyStatus
  * Also work around for some services that expect flipped bytes
* Handle cases where a website sends a mixture of WV and PR PSSH
* Add handler for MediaKeySession.close
2025-07-06 20:45:27 +09:00

55 lines
1.1 KiB
JSON

{
"manifest_version": 3,
"name": "Vineless",
"version": "1.2",
"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-128.png"
}
},
"icons": {
"128": "images/icon-128.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"
}
}
}