forked from tpd94/CDRM-Extension
38 lines
755 B
JSON
38 lines
755 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "CDRM Extension 2.0",
|
|
"version": "2.0",
|
|
"description": "Decrypt DRM Protected content",
|
|
"permissions": [
|
|
"storage",
|
|
"tabs",
|
|
"activeTab",
|
|
"webRequest",
|
|
"webRequestBlocking",
|
|
"<all_urls>"
|
|
],
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content.js"],
|
|
"run_at": "document_start"
|
|
}
|
|
],
|
|
"web_accessible_resources": ["inject.js"],
|
|
"browser_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"
|
|
}
|
|
}
|