forked from kakaroto/Beyond20
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
40 lines (40 loc) · 1.11 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
{
"name": "Beyond 20",
"version": "0.0.6",
"manifest_version": 2,
"description": "Integrates the D&D Beyond Character Sheet to Roll20.",
"permissions": [ "activeTab", "tabs", "storage", "*://app.roll20.net/editor/", "*://*.dndbeyond.com/*characters/*" ],
"icons": {
"16": "images/icons/icon16.png",
"24": "images/icons/icon24.png",
"32": "images/icons/icon32.png",
"48": "images/icons/icon48.png",
"64": "images/icons/icon64.png",
"128": "images/icons/icon128.png",
"256": "images/icons/icon256.png"
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"page_action": {
"default_popup": "popup.html",
"default_icon": "images/icons/icon16.png"
},
"web_accessible_resources": [ "images/*" ],
"background": {
"persistent": true,
"scripts": [ "src/background.js" ]
},
"content_scripts": [{
"matches": [ "*://*.dndbeyond.com/*characters/*" ],
"js": [
"src/jquery-3.4.1.min.js", "src/dndbeyond.js"
]
},{
"matches": [ "*://app.roll20.net/editor/" ],
"js": [
"src/roll20.js"
]
}]
}