NTHU portal captcha solver
Solve captcha in NTHU portal using TensorFlow.js.
Что такое NTHU portal captcha solver?
NTHU portal captcha solver - это расширение Chrome, разработанное Po-Chen Lin, и его основная функция - "Solve captcha in NTHU portal using TensorFlow.js.".
Снимки экрана расширения
Скачать файл CRX расширения NTHU portal captcha solver
Скачайте файлы расширений NTHU portal captcha solver в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This chrome extension solves the captcha on https://www.ccxp.nthu.edu.tw/ccxp/INQUIRE/ and auto fills.
Source: https://github.com/danielpclin/nthu-portal-captcha-solver-extension Основная информация о расширении
| Название | |
| ID | ocjlojnojbkmgkamdnhakhkfmfcfcgcl |
| Официальный URL | https://chromewebstore.google.com/detail/nthu-portal-captcha-solve/ocjlojnojbkmgkamdnhakhkfmfcfcgcl |
| Описание | Solve captcha in NTHU portal using TensorFlow.js. |
| Размер файла | 33.24 MB |
| Количество установок | 124 |
| Текущая Версия | 0.0.3 |
| Последнее Обновление | 2022-09-15 |
| Дата публикации | 2022-09-07 |
| Рейтинг | 5.00/5 Всего 1 оценок |
| Разработчик | Po-Chen Lin |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/danielpclin/nthu-portal-captcha-solver-extension |
| Поддерживаемые языки | zh-TW |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "NTHU portal captcha solver",
"version": "0.0.3",
"description": "Solve captcha in NTHU portal using TensorFlow.js.",
"permissions": [
"webNavigation"
],
"background": {
"service_worker": "src\/service_worker.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.ccxp.nthu.edu.tw\/ccxp\/INQUIRE\/",
"https:\/\/www.ccxp.nthu.edu.tw\/ccxp\/INQUIRE\/index.php"
],
"js": [
"src\/content.js"
],
"all_frames": true,
"run_at": "document_start"
}
],
"manifest_version": 3,
"icons": {
"16": "images\/panda_16.png",
"32": "images\/panda_32.png",
"48": "images\/panda_48.png",
"128": "images\/panda_128.png"
}
} | |