wvg/manifest.json
CDM-Project 02354de1d2 v2.1.3
- CSS Styling for PSSH/License URL selectors for better readability.
2024-09-24 01:19:18 -04:00

36 lines
858 B
JSON

{
"manifest_version": 2,
"name": "Widevine L3 Decrypter",
"version": "2.1.3",
"version_name": "a1297aa-cdm-project",
"icons": {
"128": "icon.png"
},
"permissions": [
"webRequest",
"webRequestBlocking",
"<all_urls>",
"activeTab",
"storage",
"tabs",
"contextMenus"
],
"background": {
"scripts": ["background.js"],
"persistent": true
},
"content_scripts": [
{
"run_at":"document_start",
"matches":["<all_urls>"],
"js": ["content.js"],
"all_frames": true
}
],
"browser_action": {
"default_title": "Widevine Decrypter"
},
"web_accessible_resources": ["inject.js"],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}