reCAPTCHA Autoclicker

reCAPTCHA Autoclicker

Automatically ticks reCAPTCHA buttons when detected

Merlin
Additional files are visible only to premium users

manifest.json


{
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "reCAPTCHA Autoclicker"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "autoclick.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "Automatically ticks reCAPTCHA buttons when detected",
  "manifest_version": 2,
  "name": "reCAPTCHA Autoclicker",
  "permissions": [
    "<all_urls>"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0"
}