Files
Vineless/manifest.json
Ingan121 1bc26a4898 2.1
2025-10-05 15:24:14 +09:00

55 lines
1.1 KiB
JSON

{
"manifest_version": 3,
"name": "Vineless",
"version": "2.1",
"version_name": "2.1",
"description": "Play protected contents without a real CDM",
"author": "Ingan121",
"homepage_url": "https://github.com/Ingan121/Vineless",
"permissions": [
"activeTab",
"clipboardWrite",
"tabs",
"scripting",
"storage",
"notifications",
"unlimitedStorage",
"webRequest",
"webRequestBlocking",
"webNavigation"
],
"host_permissions": [
"*://*/*"
],
"action": {
"default_popup": "pages/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>", "file://*/*"],
"js": ["message_proxy.js"],
"run_at": "document_start",
"world": "ISOLATED",
"all_frames": true,
"match_about_blank": true
}
],
"browser_specific_settings": {
"gecko": {
"id": "vineless@ingan121.com",
"strict_min_version": "58.0"
}
}
}