-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
28 lines (28 loc) · 873 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
{
"name": "D&D Beyond Dice Discord Bot",
"version": "0.0.1.0",
"description": "A Chrome Extension that listens for dice rolls on D&D Beyond Character Sheets and posts the results into a Discord server via a bot.",
"manifest_version": 2,
"permissions": ["storage"],
"content_scripts": [
{
"matches": ["https://www.dndbeyond.com/profile/*/characters/*"],
"js": ["content.js"]
}
],
"options_page": "build_output/options.html",
"page_action": {
"default_icon": {
"16": "images/d20.png",
"32": "images/d20@2x.png",
"48": "images/d20@3x.png",
"128": "images/d20@8x.png"
}
},
"icons": {
"16": "images/d20.png",
"32": "images/d20@2x.png",
"48": "images/d20@3x.png",
"128": "images/d20@8x.png"
}
}