CaptchaLess

An extension for autofilling captchas at USTC sites

CaptchaLess란 무엇입니까?

CaptchaLess은(는) Video Tech Group에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension for autofilling captchas at USTC sites"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

CaptchaLess 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        ============项目地址============
https://github.com/CaptchaLess/CaptchaLess

============项目介绍============
CaptchaLess是一个自动填充中科大网站验证码的Chrome插件,目前支持的网站包括 http://yjs.ustc.edu.cn/, http://epc.ustc.edu.cn/ , http://lib.ustc.edu.cn/,http://mis.teach.ustc.edu.cn/。安装插件后打开相应的登录页面即可自动填充验证码。经测试,在前面三个网站上,准确率可以达到90%,在最后一个网站上准确率约为67%。希望我们的这个小工具能够帮助到更多的人^_^。

============问题反馈============
如果你在使用过程中遇到任何问题,如不能使用,程序出问题等,请发邮件至[email protected],我们会尽快修复问题。                    

확장 프로그램 기본 정보

이름 CaptchaLess CaptchaLess
ID claimmbgfkbkkjdibcghloeibcifnodn
공식 URL https://chromewebstore.google.com/detail/captchaless/claimmbgfkbkkjdibcghloeibcifnodn
설명 An extension for autofilling captchas at USTC sites
파일 크기 33.51 KB
설치 횟수 509
현재 버전 1.0.9
최근 업데이트 2017-04-12
출시 날짜 2017-04-12
평점 3.40/5 총 5 개의 평점
개발자 Video Tech Group
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://captchaless.github.io/CaptchaLess/
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CaptchaLess",
    "version": "1.0.9",
    "author": "Yunfeng Wang, Junfu Pu, Zhihua Huang",
    "description": "An extension for autofilling captchas at USTC sites",
    "icons": {
        "128": "icon_128.png"
    },
    "permissions": [
        "*:\/\/yjs.ustc.edu.cn\/*",
        "*:\/\/mis.teach.ustc.edu.cn\/*",
        "*:\/\/weibo.com\/*"
    ],
    "browser_action": {
        "default_icon": "icon_19.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/yjs.ustc.edu.cn\/*"
            ],
            "js": [
                "img_to_data_url.js",
                "captcha_yjs.js"
            ]
        },
        {
            "matches": [
                "*:\/\/epc.ustc.edu.cn\/*"
            ],
            "js": [
                "img_to_data_url.js",
                "captcha_epc.js"
            ]
        },
        {
            "matches": [
                "*:\/\/mis.teach.ustc.edu.cn\/*"
            ],
            "js": [
                "img_to_data_url.js",
                "captcha_mis.js"
            ]
        },
        {
            "matches": [
                "*:\/\/weibo.com\/"
            ],
            "js": [
                "img_to_data_url.js",
                "captcha_weibo.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.lib.ustc.edu.cn\/*"
            ],
            "js": [
                "img_to_data_url.js",
                "captcha_lib.js"
            ]
        }
    ],
    "manifest_version": 2
}