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/firefox/manifest.json
Views: 720
1
{
2
"name": "Prodigy Hacking Extension | PHEx",
3
"version": "3.0.2",
4
"description": "Free and open source hacks for Prodigy Math Game (for Firefox).",
5
"permissions": [
6
"webRequest",
7
"webRequestBlocking",
8
"*://*.prodigygame.com/*",
9
"https://raw.githubusercontent.com/*",
10
"https://infinitezero.net/*",
11
"storage"
12
],
13
"icons": {
14
"16": "assets/x16.png",
15
"48": "assets/x48.png",
16
"128": "assets/x128.png"
17
},
18
"background": {
19
"scripts": ["background.js", "swal/sweetalert2.all.min.js"],
20
"persistent": true
21
},
22
"content_scripts": [{
23
"matches": ["https://math.prodigygame.com/*"],
24
"js": ["disableIntegrity.js", "swal/sweetalert2.all.min.js"]
25
}],
26
"browser_action": {
27
"default_popup": "popup.html"
28
},
29
"manifest_version": 2
30
}
31
32