-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
34 lines (34 loc) · 1011 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
{
"name": "GBF Item Magic",
"version": "1.5.13",
"minimum_chrome_version": "40.0",
"manifest_version": 2,
"description": "Provides various tools for saving time in Granblue Fantasy when working with items.",
"devtools_page": "src/devtools/devtools.html",
"background": {
"scripts": ["src/bg/background.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["*://gbf.game.mbga.jp/*", "*://game.granbluefantasy.jp/*"],
"js": [
"src/content/common.js",
"src/content/sell.js",
"src/content/gacha.js",
"src/content/stash.js",
"src/content/ship.js",
"src/content/reserve.js"
]
}
],
"options_ui": {
"page": "src/options/options.html",
"chrome_style": true
},
"permissions": [
"*://gbf.game.mbga.jp/*",
"*://game.granbluefantasy.jp/*",
"storage"
]
}