-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathmanifest.json
42 lines (42 loc) · 890 Bytes
/
manifest.json
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
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
},
"name": "NHentai Downloader",
"version": "2.1.10",
"description": "A chrome extension to download doujinshi from NHentai",
"icons": {
"64": "Icon.png"
},
"browser_action": {
"default_popup": "index.html"
},
"permissions": [
"downloads",
"tabs",
"https://nhentai.net/*",
"https://i1.nhentai.net/*",
"https://i2.nhentai.net/*",
"https://i3.nhentai.net/*",
"https://i4.nhentai.net/*",
"storage"
],
"author": "Xwilarg",
"background": {
"scripts": ["js/background.js"]
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"content_scripts": [{
"matches": [
"https://nhentai.net/*"
],
"css" : ["css/content.css"],
"js": ["js/content.js"]
}],
"manifest_version": 2
}