NTHU OAuth Decaptcha
Decaptcha the captcha code on NTHU OAuth page and automatically applied the value on the form.
Что такое NTHU OAuth Decaptcha?
NTHU OAuth Decaptcha - это расширение Chrome, разработанное justin0u0, и его основная функция - "Decaptcha the captcha code on NTHU OAuth page and automatically applied the value on the form.".
Снимки экрана расширения
Скачать файл CRX расширения NTHU OAuth Decaptcha
Скачайте файлы расширений NTHU OAuth Decaptcha в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
NTHU OAuth Decaptcha 該插件可以自動填入清大 OAuth 系統驗證碼。 專案網址:https://github.com/justin0u0/NTHU-OAuth-Decaptcha 如果你喜歡這個插件,可以幫我們的 Github Repo 點個星星 ⭐️
Основная информация о расширении
Название | NTHU OAuth Decaptcha |
ID | mflpajkffpiibelpmffonolenndbgogp |
Официальный URL | https://chromewebstore.google.com/detail/nthu-oauth-decaptcha/mflpajkffpiibelpmffonolenndbgogp |
Описание | Decaptcha the captcha code on NTHU OAuth page and automatically applied the value on the form. |
Размер файла | 3.11 MB |
Количество установок | 401 |
Текущая Версия | 1.4 |
Последнее Обновление | 2023-08-25 |
Дата публикации | 2022-02-14 |
Рейтинг | 5.00/5 Всего 4 оценок |
Разработчик | justin0u0 |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/justin0u0/NTHU-OAuth-Decaptcha |
URL страницы помощи | https://github.com/justin0u0/NTHU-OAuth-Decaptcha |
Поддерживаемые языки | zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "NTHU OAuth Decaptcha", "description": "Decaptcha the captcha code on NTHU OAuth page and automatically applied the value on the form.", "version": "1.4", "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "background": { "service_worker": "background.js" }, "permissions": [ "webRequest", "scripting" ], "host_permissions": [ "https:\/\/oauth.ccxp.nthu.edu.tw\/v1.1\/authorize.php" ], "content_scripts": [ { "matches": [ "https:\/\/oauth.ccxp.nthu.edu.tw\/v1.1\/authorize.php*" ], "js": [ "js\/tfjs-core.min.js", "js\/tfjs-backend-webgl.min.js", "js\/tfjs-layers.min.js" ] } ], "web_accessible_resources": [ { "resources": [ "\/model\/*" ], "matches": [ "https:\/\/oauth.ccxp.nthu.edu.tw\/*" ] } ] } |