forked from MrPrimate/ddb-importer-chrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
30 lines (30 loc) · 809 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
{
"name": "MrPrimate's DDB Importer!",
"version": "0.0.2",
"description": "Transports your dndbeyond.com characters to Foundry Table Top. For more details see https://github.com/mrprimate/ddb-importer",
"manifest_version": 2,
"icons": {
"32": "icons/icon-32x32.png",
"38": "icons/icon-38x38.png",
"64": "icons/icon-64x64.png",
"128": "icons/icon-128x128.png"
},
"permissions": [
"storage",
"cookies",
"activeTab",
"declarativeContent",
"https://dndbeyond.com/*",
"https://*.dndbeyond.com/*",
"clipboardWrite"
],
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"32": "icons/icon-32x32.png",
"38": "icons/icon-38x38.png",
"64": "icons/icon-64x64.png",
"128": "icons/icon-128x128.png"
}
}
}