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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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 } |