-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
30 lines (30 loc) · 884 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": "D&D Beyond Campaign DM Screen",
"version": "1.2.2",
"description": "DM Screen Extension for D&D Beyond. This extension extends the campaign page to turn it into a DM screen.",
"manifest_version": 2,
"icons": {
"16": "assets/icon-16x16.png",
"32": "assets/icon-32x32.png",
"128": "assets/icon-128x128.png"
},
"permissions": ["storage", "activeTab", "tabs"],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"browser_action": {
"default_title": "D&D Beyond Campaign DM Screen",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https://www.dndbeyond.com/campaigns/*",
"http://www.dndbeyond.com/campaigns/*"
],
"js": ["content.js"]
}
],
"content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'"
}