auto-account-machine/extensions/capsolver/assets/config.js
dengqichen b0b81e9279 aaaaa
2025-11-17 20:13:06 +08:00

67 lines
1.9 KiB
JavaScript

export const defaultConfig = {
// API key
apiKey: 'CAP-0FCDDA4906E87D9F4FF68EAECD34E320876FBA70E4F30EA1ADCD264EDB15E4BF',
// Your Developer appId, Apply in dashboard's developer section
appId: '',
// Is the extension enabled by default or not
useCapsolver: true,
// Solve captcha manually
manualSolving: false,
// Captcha solved callback function name
solvedCallback: 'captchaSolvedCallback',
// Use proxy or not
// If useProxy is true, then proxyType, hostOrIp, port, proxyLogin, proxyPassword are required
useProxy: false,
proxyType: 'http',
hostOrIp: '',
port: '',
proxyLogin: '',
proxyPassword: '',
enabledForBlacklistControl: true, // Use blacklist control
blackUrlList: [
'checkout.stripe.com', // 禁用 CapSolver 在 Stripe 支付页面
'js.stripe.com' // 禁用 CapSolver 在 Stripe JS 资源
], // Blacklist URL list
// Is captcha enabled by default or not
enabledForRecaptcha: true,
enabledForRecaptchaV3: true,
enabledForImageToText: true,
enabledForAwsCaptcha: true,
enabledForCloudflare: true,
// Task type: click or token
reCaptchaMode: 'click',
hCaptchaMode: 'click',
// Delay before solving captcha
reCaptchaDelayTime: 0,
hCaptchaDelayTime: 0,
textCaptchaDelayTime: 0,
awsDelayTime: 0,
// Number of repeated solutions after an error
reCaptchaRepeatTimes: 10,
reCaptcha3RepeatTimes: 10,
hCaptchaRepeatTimes: 10,
funCaptchaRepeatTimes: 10,
textCaptchaRepeatTimes: 10,
awsRepeatTimes: 10,
// ReCaptcha V3 task type: ReCaptchaV3TaskProxyLess or ReCaptchaV3M1TaskProxyLess
reCaptcha3TaskType: 'ReCaptchaV3TaskProxyLess',
textCaptchaSourceAttribute: 'capsolver-image-to-text-source', // ImageToText source img's attribute name
textCaptchaResultAttribute: 'capsolver-image-to-text-result', // ImageToText result element's attribute name
textCaptchaModule: 'common', // ImageToText module
showSolveButton: true, // Show solve button
};