mirror of
https://github.com/ThatNotEasy/PlayReadyProxy.git
synced 2026-04-02 10:38:18 +00:00
49 lines
1.2 KiB
JSON
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"
|
|
}
|
|
}
|
|
}
|