wvg/manifest.json

37 lines
869 B
JSON

{
"manifest_version": 2,
"name": "Widevine L3 Guessor 2024",
"version": "240508.1",
"version_name": "a340722",
"icons": {
"128": "icon.png"
},
"permissions": [
"webRequest",
"webRequestBlocking",
"<all_urls>",
"activeTab",
"windows",
"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 Guessor"
},
"web_accessible_resources": ["inject.js"],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}