CaptchaLess

CaptchaLess

An extension for autofilling captchas at USTC sites

Merlin
Additional files are visible only to premium users

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
}