-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
56 lines (56 loc) · 1.4 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "Pornolab assistant",
"version": "1.3",
"description": "https://github.com/DreadfulBot/pornolab-assistant",
"background": {
"persistent": false,
"page": "src/html/background.html"
},
"permissions": [
"activeTab",
"declarativeContent",
"storage",
"https://*/*",
"http://*/*"
],
"content_scripts": [
{
"matches": [
"*://pornolab.net/*"
],
"css": [
"src/css/lib/bootstrap.min.css",
"src/css/modal.css"
],
"js": [
"dist/lib/jquery-3.5.1.min.js",
"dist/lib/bootstrap.min.js",
"dist/pornolab.js"
],
"run_at": "document_end"
}
],
"page_action": {
"default_popup": "src/html/popup.html",
"default_icon": {
"16": "images/favicon.png",
"32": "images/favicon.png",
"48": "images/favicon.png",
"128": "images/favicon.png"
}
},
"icons": {
"16": "images/favicon.png",
"32": "images/favicon.png",
"48": "images/favicon.png",
"128": "images/favicon.png"
},
"manifest_version": 2,
"web_accessible_resources": [
"dist/lib/*",
"dist/*",
"src/html/*",
"src/css/*",
"images/*"
]
}