mirror of
https://github.com/Ingan121/Vineless.git
synced 2026-04-02 10:38:23 +00:00
55 lines
1.1 KiB
JSON
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"
|
|
}
|
|
}
|
|
}
|