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是由https://qjbtiger.github.io开发的Chrome扩展程序,该扩展的主要功能是“This is a Chrome Extention for recognizing and filling the captcha in SYSU CAS website”。
扩展截图
下载SYSU CAS Captcha Autofill扩展crx文件
下载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
扩展基本信息
名称 | SYSU CAS Captcha Autofill |
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\/*" ] } |