-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
42 lines (42 loc) · 1.73 KB
/
Copy pathmanifest.json
File metadata and controls
42 lines (42 loc) · 1.73 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
{
"manifest_version": 3,
"name": "Helper Extension for Gridiron Dynasty",
"version": "2.0.0.3",
"description": "Add recruit hometown mapping links, recruit considering color, box score analysis links",
"browser_specific_settings": {
"gecko": {
"id": "{0bf3fa8d-30fc-479d-a0e0-798515f70ce7}",
"strict_min_version": "109.0"
}
},
"icons": {
"16": "images/football-16x16.png",
"32": "images/football-32x32.png",
"192": "images/football-192x192.png",
"512": "images/football-512x512.png"
},
"content_scripts": [
{
"js": ["scripts/common.js","scripts/content.js"],
"matches": ["https://www.whatifsports.com/gd/recruiting/Search.aspx", "https://www.whatifsports.com/gd/RecruitProfile/*"]
},
{
"js": ["scripts/common.js", "scripts/header-link-insertion.js"],
"matches": ["https://www.whatifsports.com/gd/*"]
},
{
"js": ["scripts/common.js", "scripts/main-page.js"],
"matches": ["https://www.whatifsports.com/gd/TeamProfile/GameLog.aspx?tid=*", "https://www.whatifsports.com/gd/Office/Default.aspx", "https://www.whatifsports.com/gd/office/*"]
},
{
"js": ["scripts/common.js", "scripts/box-score-analysis.js"],
"matches": ["https://www.whatifsports.com/gd/schedule/", "https://www.whatifsports.com/gd/TeamProfile/Schedule.aspx?tid=*", "https://www.whatifsports.com/gd/TeamProfile/GameLog.aspx?tid=*"]
}
],
"web_accessible_resources" : [
{
"resources": ["images/plus-icon.png", "data/schools.json"],
"matches": ["https://www.whatifsports.com/*"]
}
]
}