capsolver / capsolver-browser-extension

This browser extension supports recognition of the most popular CAPTCHAs, including reCAPTCHA v2, v3, reCAPTCHA v2 invisible, enterprise, hCaptcha, FunCaptcha, Geetest, AWS Waf Captcha, Amazon Captcha, Cloudflare v3(Turnstile) Captcha and regular picture captcha with numbers and letters(ImageToText).
https://www.capsolver.com/
48 stars 2 forks source link

Chrome Extension configuration file does not read API Key #5

Open fuatumulu opened 8 months ago

fuatumulu commented 8 months ago

I am using CapSolver for browser automation. I have the plugin installed by default in multiple browsers, but the API KEY I entered in assets/config.js is not detected by browsers by default.

CorujaBR commented 8 months ago

Same here, wont load API Key on chrome...

capsolver commented 8 months ago

we will look into the issue and fix

On 02/16/2024 8:07 AM CST CorujaBR @.***> wrote:

Same here, wont load API Key on chrome...

— Reply to this email directly, view it on GitHub https://github.com/capsolver/capsolver-browser-extension/issues/5#issuecomment-1947536147, or unsubscribe https://github.com/notifications/unsubscribe-auth/A2UICEWSJQNMSZOKGYLJOQTYT2PN3AVCNFSM6AAAAABDK3BXSGVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTSNBXGUZTMMJUG4. You are receiving this because you are subscribed to this thread.Message ID: @.***>

maddo7 commented 8 months ago

Same issue, any fix for this by now? The support on your website is not helpful at all. First they say this feature is not supported, then they say it should work because it is described on your website.

capsolver commented 8 months ago

Hey there

Yes,

our new version has been uploaded to the Google Store and this problem has been fixed. Please ensure to use the new version

On 02/21/2024 5:56 PM CST maddo7 @.***> wrote:

Same issue, any fix for this by now? The support on your website is not helpful at all. First they say this feature is not supported, then they say it should work because it is described on your website.

— Reply to this email directly, view it on GitHub https://github.com/capsolver/capsolver-browser-extension/issues/5#issuecomment-1956280643, or unsubscribe https://github.com/notifications/unsubscribe-auth/A2UICEQFFBEU5TRM6ONZORTYUXAELAVCNFSM6AAAAABDK3BXSGVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTSNJWGI4DANRUGM. You are receiving this because you commented.Message ID: @.***>

ducklin404 commented 8 months ago

I still have this issue

I added the API key in both files: my-content-script.js and assets/config.js, and it works for me.

capsolver commented 8 months ago

hello

what do you mean it works for you Is it works or not? please describe your problems in detail

On 02/26/2024 4:21 PM CST Duck @.***> wrote:

I still have this issue

I added the API key in both files: my-content-script.js and assets/config.js, and it works for me.

— Reply to this email directly, view it on GitHub https://github.com/capsolver/capsolver-browser-extension/issues/5#issuecomment-1963554168, or unsubscribe https://github.com/notifications/unsubscribe-auth/A2UICEVGTCKFSHIQSHHNJDDYVRA2NAVCNFSM6AAAAABDK3BXSGVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTSNRTGU2TIMJWHA. You are receiving this because you commented.Message ID: @.***>

sergio-itru commented 6 months ago

solution is to add newline ='\n' when write to a file. like this with open(path, 'w', encoding='utf-8',newline='\n') as f:

daueee commented 6 months ago

solution is to add newline ='\n' when write to a file. like this with open(path, 'w', encoding='utf-8',newline='\n') as f:

Can you explain again? I need to do this where?

sergio-itru commented 6 months ago

solution is to add newline ='\n' when write to a file. like this with open(path, 'w', encoding='utf-8',newline='\n') as f:

Can you explain again? I need to do this where?

it is about CR LF, LF and CR line break types when you resave file with apiKey try to change the mode of writing, ask chatGpt for your code, above is for working solution for python