Prodigy Hacking Extension (PHEx)

PHEx is an extension made to raise awareness of security issues for Prodigy

Prodigy Hacking Extension (PHEx)란 무엇입니까?

Prodigy Hacking Extension (PHEx)은(는) http://prodigyhacking.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "PHEx is an extension made to raise awareness of security issues for Prodigy"입니다.

확장 프로그램 스크린샷

screenshot

Prodigy Hacking Extension (PHEx) 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        The goal of the Prodigy Hacking Organization is to raise awareness of the game security issues that SMARTeacher has blatantly ignored. This is a Chrome extension that allows users of SMARTeacher products (currently: Prodigy) to explore security issues within the game without exposing any functionality that could be damaging to another user's expierence.

For more information, see https://prodigyhacking.com

We do NOT collect any information on you or anything else. We do not see profits from you or anyone else.

Our code is 100% open source, and you can view our code and other projects at https://github.com/Prodigy-Hacking

Prodigy Hacking is in no way associated with Prodigy Math Game or SMARTeacher.                    

확장 프로그램 기본 정보

이름 Prodigy Hacking Extension (PHEx) Prodigy Hacking Extension (PHEx)
ID gjabpajagbgoifbkflgojeojmnlmioea
공식 URL https://chrome.google.com/webstore/detail/prodigy-hacking-extension/gjabpajagbgoifbkflgojeojmnlmioea
설명 PHEx is an extension made to raise awareness of security issues for Prodigy
파일 크기 36.19 KB
설치 횟수 100,000
현재 버전 2.1.8
최근 업데이트 2022-01-25
출시 날짜 2021-03-05
평점 3.67/5 총 438 개의 평점
개발자 http://prodigyhacking.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://prodigyhacking.com
도움말 페이지 URL https://discord.gg/XQDfbfq
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Prodigy Hacking Extension (PHEx)",
    "version": "2.1.8",
    "description": "PHEx is an extension made to raise awareness of security issues for Prodigy",
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*.prodigygame.com\/*",
        "https:\/\/raw.githubusercontent.com\/*",
        "storage"
    ],
    "icons": {
        "16": "assets\/x16.png",
        "48": "assets\/x48.png",
        "128": "assets\/x128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/math.prodigygame.com\/*"
            ],
            "js": [
                "disableIntegrity.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "manifest_version": 2
}