Files
PlayReadyProxy/manifest.json
YOLOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO 2e84bd28ce Add files via upload
2025-02-01 08:22:42 +08:00

49 lines
1.2 KiB
JSON

{
"manifest_version": 3,
"name": "PlayreadyProxy",
"version": "1.3.3.7",
"permissions": [
"activeTab",
"tabs",
"storage",
"unlimitedStorage",
"webRequest"
],
"host_permissions": ["*://*/*"],
"action": {
"default_popup": "panel/panel.html",
"default_icon": {
"128": "images/icon-128.png"
}
},
"icons": {
"128": "images/icon-128.png"
},
"background": {
"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": "ThatNotEasy@Deny@DevLARLEY",
"strict_min_version": "58.0"
}
}
}