SYSU CAS Captcha Autofill
This is a Chrome Extention for recognizing and filling the captcha in SYSU CAS website
Что такое SYSU CAS Captcha Autofill?
SYSU CAS Captcha Autofill - это расширение Chrome, разработанное https://qjbtiger.github.io, и его основная функция - "This is a Chrome Extention for recognizing and filling the captcha in SYSU CAS website".
Снимки экрана расширения
Скачать файл CRX расширения SYSU CAS Captcha Autofill
Скачайте файлы расширений SYSU CAS Captcha Autofill в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This is a Chrome Extension to auto fill captchas when logining Sun Yat-sen University CAS website. Just download and it will work well.
For more details, go to https://github.com/Qjbtiger/CAS-captcha Основная информация о расширении
| Название | |
| ID | ipdlibcadfhbodhagdjdcaebnlgbjoko |
| Официальный URL | https://chromewebstore.google.com/detail/sysu-cas-captcha-autofill/ipdlibcadfhbodhagdjdcaebnlgbjoko |
| Описание | This is a Chrome Extention for recognizing and filling the captcha in SYSU CAS website |
| Размер файла | 943 KB |
| Количество установок | 327 |
| Текущая Версия | 1.1.1 |
| Последнее Обновление | 2021-09-09 |
| Дата публикации | 2020-07-27 |
| Рейтинг | 3.00/5 Всего 2 оценок |
| Разработчик | https://qjbtiger.github.io |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "SYSU CAS Captcha Autofill",
"version": "1.1.1",
"description": "This is a Chrome Extention for recognizing and filling the captcha in SYSU CAS website",
"icons": {
"16": "img\/icon_16.png",
"32": "img\/icon_32.png",
"64": "img\/icon_64.png",
"128": "img\/icon_128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/cas.sysu.edu.cn\/cas\/login*",
"https:\/\/cas-443.webvpn.sysu.edu.cn\/cas\/login*"
],
"js": [
"js\/jquery-3.4.1.min.js",
"js\/onnx.min.js",
"js\/analytics.js",
"js\/main.js"
],
"run_at": "document_start",
"all_frame": true
}
],
"permissions": [
"storage"
],
"homepage_url": "https:\/\/github.com\/Qjbtiger",
"browser_action": {
"default_icon": "img\/icon_32.png",
"default_title": "Hi!",
"default_popup": "popup.html"
},
"web_accessible_resources": [
"model\/*"
]
} | |