-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
49 lines (49 loc) · 1022 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
43
44
45
46
47
48
49
{
"author": "Astro_Corp",
"manifest_version": 2,
"name": "VNDB Mod",
"version": "0.2.2",
"description": "Mods for VNDB",
"homepage_url": "https://github.com/AstroCorp/VNDB-Mod-Chrome-Extension",
"content_scripts": [
{
"css": [
"css/styles.css"
],
"js": [
"js/mainController.js",
"js/scripts.js"
],
"all_frames": true,
"matches": [
"*://query.vndb.org/*",
"*://vndb.org/g*",
"*://vndb.org/p*",
"*://vndb.org/u*/list",
"*://vndb.org/u*/votes",
"*://vndb.org/u*/wish",
"*://vndb.org/u*/list?c=*;v=*;t=*",
"*://vndb.org/u*/votes?c=*",
"*://vndb.org/u*/wish?f=*",
"*://vndb.org/u*/ulist?*",
"*://vndb.org/v",
"*://vndb.org/v?*"
]
}
],
"icons":{
"128":"icons/icon-128.png",
"96":"icons/icon-96.png",
"48":"icons/icon-48.png",
"16":"icons/icon-16.png"
},
"permissions":[
"https://vndb.org/*",
"https://query.vndb.org/*",
"webRequest",
"storage",
"unlimitedStorage",
"webRequestBlocking",
"browsingData"
]
}