CDRM-Extension/src/manifest.json

38 lines
940 B
JSON
Raw Normal View History

2025-06-01 12:40:24 -04:00
{
2025-07-20 16:27:13 +07:00
"manifest_version": 3,
"name": "CDRM Extension",
"version": "2.1.0",
"description": "Decrypt DRM protected content",
"permissions": ["storage", "activeTab", "contextMenus"],
"host_permissions": ["<all_urls>"],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"],
"run_at": "document_start",
"all_frames": true
}
],
2025-07-20 16:27:13 +07:00
"web_accessible_resources": [
{
"resources": ["inject.js"],
"matches": ["<all_urls>"]
}
],
"action": {
"default_icon": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"128": "icons/icon128.png"
}
},
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"128": "icons/icon128.png"
2025-06-01 12:40:24 -04:00
}
2025-07-20 16:27:13 +07:00
}