Files
WidevineProxy2/manifest.json
2024-10-25 21:10:45 +02:00

51 lines
1.0 KiB
JSON

{
"manifest_version": 3,
"name": "WidevineProxy2",
"version": "0.6",
"permissions": [
"activeTab",
"tabs",
"storage",
"unlimitedStorage"
],
"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
},
{
"matches": ["<all_urls>"],
"js": ["content_script.js"],
"run_at": "document_start",
"world": "MAIN",
"all_frames": true
}
],
"browser_specific_settings": {
"gecko": {
"id": "DevLARLEY@larley.dev",
"strict_min_version": "58.0"
}
}
}