-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
40 lines (40 loc) · 928 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
39
40
{
"manifest_version": 3,
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
},
"name": "BattleMetrics Hour Summary",
"description": "Summarizes player hours on BattleMetrics.",
"version": "1.1.0",
"icons": {
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"action": {
"default_popup": "popup/popup.html",
"default_icon": "images/icon48.png"
},
"content_scripts": [
{
"js": [
"static/constants.js",
"static/game_name_mapping.js",
"scripts/helpers.js",
"scripts/init-html.js",
"scripts/process-hours.js",
"scripts/process-sessions.js",
"scripts/past-ids.js",
"scripts/generate-html.js",
"scripts/content.js"
],
"css": [
"css/style.css"
],
"matches": [
"https://www.battlemetrics.com/*"
]
}
]
}