-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
38 lines (38 loc) · 983 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
31
32
33
34
35
36
37
38
{
"manifest_version": 3,
"name": "Tenhou score pane",
"version": "3.0.0",
"description": "Adds a pane to the tenhou.net and ron2.jp clients (/3, /4) in-game which contains the score history of the hands in the current game",
"host_permissions": [
"https://tenhou.net/*",
"https://ron2.jp/*"
],
"icons": {
"16": "icons/16.png",
"32": "icons/32.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"*://tenhou.net/0*",
"*://tenhou.net/4*",
"*://tenhou.net/3*",
"*://ron2.jp/3*"
],
"js": [
"jquery.js",
"chart.js",
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_idle"
}
]
}