2Captcha Chrome Extension Mod
Setting up the extension
Google drive download: https://drive.google.com/drive/folders/136sowG6BZZ3FcR2NFd5RznQdKieeFSkx?usp=sharing
The extension has many settings, including automatic solution of the specified type of captcha, support for proxy
, and other settings. The settings are available in the file ./common/config.js. To add settings for the automatic reCAPTCHA V2 solution, you need to open the file ./common/config.js
and change the value of the autoSolveRecaptchaV2
field to true
.
Next, you need to configure the extension:
Enter your API key in the extension settings file ./common/config.js
. Your key must be written to the value of the apiKey field. You can see and copy you're API key on the page.
Example: apiKey: "8080629c1221fdd82m8080000ff0c99c"
How to disable opening the extension page after installation?
To do this, in the file ./manifest.json
delete the following lines:
"options_ui": {
"page": "options/options.html",
"open_in_tab": true
},
Last updated