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) - это расширение Chrome, разработанное http://prodigyhacking.com, и его основная функция - "PHEx is an extension made to raise awareness of security issues for Prodigy".
Снимки экрана расширения
Скачать файл CRX расширения Prodigy Hacking Extension (PHEx)
Скачайте файлы расширений Prodigy Hacking Extension (PHEx) в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | |
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 } |