forked from cyrillebenoit/BingosyncPlus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
65 lines (65 loc) · 1.58 KB
/
manifest.json
File metadata and controls
65 lines (65 loc) · 1.58 KB
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
59
60
61
62
63
64
65
{
"manifest_version": 2,
"name": "Bingosync+",
"version": "2.6.2",
"description": "Provides multiple improvements to Bingosync.com. Notably: Theming, Integrated Timer, Anti-stars, Translation, and more!",
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"content_scripts": [
{
"matches": [
"*://*.bingosync.com/room/*",
"*://*.bingosync.bingothon.com/room/*"
],
"css": [
"styles/antistar.css",
"styles/clue.css",
"styles/invasion.css",
"styles/timer.css"
],
"js": [
"scripts/loadLists.js",
"scripts/antistar.js",
"scripts/blinddraft.js",
"scripts/clue.js",
"scripts/draft.js",
"scripts/rowcontrol.js",
"scripts/invasion.js",
"scripts/ordering.js",
"scripts/timer.js",
"scripts/translate.js",
"scripts/theme.js",
"scripts/boardFunctions.js",
"libraries/dom-to-img.js"
],
"run_at": "document_end"
}
],
"background": {
"scripts": [
"background.js"
]
},
"web_accessible_resources": ["assets/antistar.png"],
"page_action": {
"default_title": "Bingosync+",
"default_popup": "pageAction/action.html",
"default_icon": "icons/icon-48.png",
"show_matches": [
"*://*.bingosync.com/room/*",
"*://*.bingosync.bingothon.com/room/*"
]
},
"permissions": [
"storage",
"tabs",
"https://raw.githubusercontent.com/*",
"clipboardWrite"
],
"options_ui": {
"open_in_tab": true,
"page": "options/page.html"
}
}