CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
ProdigyPNP

CoCalc is a real-time collaborative commercial alternative to JupyterHub and Overleaf that provides Jupyter Notebooks, LaTeX documents, and SageMath.

GitHub Repository: ProdigyPNP/ProdigyMathGameHacking
Path: blob/master/PHEx/src/manifest.json
Views: 720
1
{
2
"name": "Prodigy Hacking Extension | PHEx",
3
"manifest_version": 3,
4
"version": "3.0.2",
5
"description": "Free and open source hacks for Prodigy Math Game",
6
"author": "ProdigyPNP",
7
8
"permissions": [
9
"declarativeNetRequest",
10
"storage"
11
],
12
"host_permissions": [
13
"*://*.prodigygame.com/*",
14
"https://raw.githubusercontent.com/*",
15
"https://infinitezero.net/*"
16
],
17
"icons": {
18
"16": "assets/x16.png",
19
"48": "assets/x48.png",
20
"128": "assets/x128.png"
21
},
22
"declarative_net_request" : {
23
"rule_resources" : [
24
{
25
"id": "rulesets",
26
"enabled": true,
27
"path": "block.json"
28
}
29
]
30
},
31
"content_scripts": [{
32
"matches": ["https://math.prodigygame.com/*"],
33
"js": ["disableIntegrity.js", "swal/sweetalert2.all.min.js"]
34
}],
35
"action": {
36
"default_popup": "popup.html",
37
"default_icons": {
38
"16": "assets/x16.png",
39
"48": "assets/x48.png",
40
"128": "assets/x128.png"
41
},
42
"default_title": "Prodigy Hacking Extension | PHEx"
43
}
44
}
45
46