-
Notifications
You must be signed in to change notification settings - Fork 6
/
manifest.json
58 lines (58 loc) · 1.94 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
57
58
{
"name": "D&D Toolbox",
"short_name": "D&D Toolbox",
"version": "0.8.5",
"manifest_version": 2,
"description": "Adds a toolbox and expands on features provided by D&D Beyond, such as Dice Rollders and Intiative Tracker.",
"homepage_url": "http://www.dndbeyond.com/forums/d-d-beyond-general/general-discussion/10544-d-d-toolbox-chrome-extension",
"permissions": [ "activeTab", "commands", "cookies", "notifications", "storage", "tabs", "webRequest", "*://*.dndbeyond.com/*" ],
"web_accessible_resources": [ "webaccessible/*" ],
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"icons": {
"16": "webaccessible/images/icon16.png",
"32": "webaccessible/images/icon32.png",
"48": "webaccessible/images/icon48.png",
"64": "webaccessible/images/icon64.png",
"128": "webaccessible/images/icon128.png",
"256": "webaccessible/images/icon256.png"
},
"externally_connectable": {
"matches": [ "*://*.dndbeyond.com/*" ]
},
"background": {
"persistent": true,
"scripts": [ "scripts/xbackground.js" ]
},
"content_scripts": [{
"matches": [ "*://*.dndbeyond.com/*" ],
"exclude_matches": [
"*://*.dndbeyond.com/api/character/svg/download*",
"*://*.dndbeyond.com/twitch-login*",
"*://*.dndbeyond.com/login-callback*"
],
"css": [ "styles/xcontent.css" ],
"js": [
"scripts/xplugins.js",
"scripts/toolbox.config.js",
"scripts/toolbox.helpers.js",
"scripts/toolbox.container.js",
"scripts/toolbox.character.js",
"scripts/toolbox.diceroller.js",
"scripts/toolbox.notes.js",
"scripts/toolbox.monster.js",
"scripts/toolbox.initiative.js",
"scripts/toolbox.players.js",
"scripts/toolbox.encounters.js",
"scripts/toolbox.asyncdiceroller.js",
"scripts/toolbox.creator.js",
"scripts/toolbox.notification.js",
"scripts/toolbox.github.js",
"scripts/toolbox.storage.js",
"scripts/toolbox.loader.js",
"scripts/toolbox.extra.js"
]
}]
}