2025-06-01 12:40:24 -04:00
|
|
|
{
|
2025-07-20 15:03:43 +07:00
|
|
|
"manifest_version": 2,
|
|
|
|
"name": "CDRM Extension",
|
|
|
|
"version": "2.1.0",
|
|
|
|
"description": "Decrypt DRM protected content",
|
|
|
|
"permissions": [
|
|
|
|
"webRequest",
|
|
|
|
"webRequestBlocking",
|
|
|
|
"<all_urls>",
|
|
|
|
"activeTab",
|
|
|
|
"storage",
|
|
|
|
"tabs",
|
|
|
|
"contextMenus"
|
|
|
|
],
|
|
|
|
"background": {
|
|
|
|
"scripts": [
|
|
|
|
"background.js"
|
2025-07-20 12:18:15 +07:00
|
|
|
],
|
2025-07-20 15:03:43 +07:00
|
|
|
"persistent": true
|
|
|
|
},
|
|
|
|
"content_scripts": [
|
|
|
|
{
|
|
|
|
"matches": [
|
|
|
|
"<all_urls>"
|
|
|
|
],
|
|
|
|
"js": [
|
|
|
|
"content.js"
|
|
|
|
],
|
|
|
|
"run_at": "document_start",
|
|
|
|
"all_frames": true
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"web_accessible_resources": [
|
|
|
|
"inject.js"
|
|
|
|
],
|
|
|
|
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
|
|
|
|
"browser_action": {
|
|
|
|
"default_icon": {
|
|
|
|
"16": "icons/icon16.png",
|
|
|
|
"32": "icons/icon32.png",
|
|
|
|
"128": "icons/icon128.png"
|
2025-06-01 12:40:24 -04:00
|
|
|
}
|
2025-07-20 15:03:43 +07:00
|
|
|
},
|
|
|
|
"icons": {
|
|
|
|
"16": "icons/icon16.png",
|
|
|
|
"32": "icons/icon32.png",
|
|
|
|
"128": "icons/icon128.png"
|
|
|
|
}
|
|
|
|
}
|