capsolver-browser-extension icon indicating copy to clipboard operation
capsolver-browser-extension copied to clipboard

Chrome Extension configuration file does not read API Key

Open fuatumulu opened this issue 4 months ago • 9 comments

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.

fuatumulu avatar Feb 15 '24 19:02 fuatumulu

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

CorujaBR avatar Feb 16 '24 00:02 CorujaBR

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: @.***>

capsolver avatar Feb 16 '24 00:02 capsolver

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.

maddo7 avatar Feb 21 '24 09:02 maddo7

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: @.***>

capsolver avatar Feb 21 '24 10:02 capsolver

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.

ducklin404 avatar Feb 26 '24 08:02 ducklin404

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: @.***>

capsolver avatar Feb 27 '24 01:02 capsolver

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

sergio-itru avatar Apr 27 '24 01:04 sergio-itru

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?

daueee avatar May 01 '24 16:05 daueee

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

sergio-itru avatar May 01 '24 19:05 sergio-itru