-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
56 lines (56 loc) · 1.34 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "Task Tackler",
"version": "2.6",
"description": "-=-=- updated ui, removed buggy text -=-=-",
"content_scripts": [
{
"matches": ["https://www.sparxmaths.uk/*"],
"js": ["dist/sparx.js"],
"run_at": "document_end"
},
{
"matches": ["https://www.sparxmaths.uk/*"],
"js": ["dist/sparxSolverBundled.js"],
"run_at": "document_end",
"type": "module"
},
{
"matches": ["https://app.bedrocklearning.org/*"],
"js": ["dist/bedrock.js"],
"run_at": "document_end"
},
{
"matches": ["https://my.educake.co.uk/*"],
"js": ["dist/educake.js"],
"run_at": "document_end"
},
{
"matches": ["https://app.senecalearning.com/*"],
"js": ["dist/seneca.js"],
"run_at": "document_end"
},
{
"matches": ["https://www.knowitallninja.com/*"],
"js": ["dist/knowitallninja.js"],
"run_at": "document_end"
}
],
"action": {
"default_popup": "popup/popup.html"
},
"permissions": ["storage"],
"icons": { "48": "pfp.png" },
"browser_action": {
"default_icon": {
"48": "pfp.png"
}
},
"host_permissions": ["https://www.sparxmaths.uk/*"],
"web_accessible_resources": [
{
"resources": ["compressedData.json"],
"matches": ["https://www.sparxmaths.uk/*"]
}
],
"manifest_version": 3
}