Jaccount Captcha
This is a Jaccount captcha recognizing plugin for Chrome and Chromium web browser developed by Seayoung
什么是Jaccount Captcha?
Jaccount Captcha是由SeayoungZhang开发的Chrome扩展程序,该扩展的主要功能是“This is a Jaccount captcha recognizing plugin for Chrome and Chromium web browser developed by Seayoung”。
扩展截图
下载Jaccount Captcha扩展crx文件
下载Jaccount Captcha扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This is an SJTU Jaccount captcha recognizing plugin for Chrome and Chromium browser developed by Siyang Zhang. It can save your Jaccount username and password and automatically fill in the captcha for you. Developed with JavaScript and an amazing machine learning project by Andrej Karpathy: http://cs.stanford.edu/people/karpathy/convnetjs Fork me on GitHub: https://github.com/seayoungzhang
扩展基本信息
名称 | |
ID | jkflfhcfedefddihcbbidpokhphmjfkm |
官方URL | https://chrome.google.com/webstore/detail/jaccount-captcha/jkflfhcfedefddihcbbidpokhphmjfkm |
简介 | This is a Jaccount captcha recognizing plugin for Chrome and Chromium web browser developed by Seayoung |
文件大小 | 2.41 MB |
安装次数 | 192 |
当前版本 | 2.1 |
更新时间 | 2018-08-27 |
上架时间 | 2018-08-27 |
评分 | 5.00/5 共1次评分 |
开发者 | SeayoungZhang |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/seayoungzhang/jaccount-captcha-cnn |
帮助页面URL | https://github.com/seayoungzhang/jaccount-captcha-cnn |
支持的语言 | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Jaccount Captcha", "version": "2.1", "description": "This is a Jaccount captcha recognizing plugin for Chrome and Chromium web browser developed by Seayoung", "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icon.png", "default_popup": "main.html" }, "permissions": [ "tabs", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/jaccount.sjtu.edu.cn\/jaccount\/jalogin*" ], "js": [ "convnet.js", "jquery-3.1.1.min.js", "model_1.js", "reco.js" ] } ] } |