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