-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
29 lines (29 loc) · 774 Bytes
/
manifest.json
File metadata and controls
29 lines (29 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "JDecrypter",
"version": "1.0",
"author":"RetrixUY",
"description": "Decrypts and Show JDownloader \"Click n' Load\" Buttons",
"icons": {
"128": "logo128.png",
"48": "logo48.png",
"32": "logo32.png",
"16": "logo16.png"
},
"manifest_version": 2,
"background": {
"scripts": ["background.js","main.js","aes.js"],
"persistent": false
},
"permissions": ["declarativeContent","activeTab"],
"browser_action":{
"default_title": "JDecrypter",
"default_popup": "popup.html"
},
"content_scripts": [{
"matches": [
"http://*/*",
"https://*/*"
],
"js": ["aes.js","main.js"]
}]
}