ChatGPT icon indicating copy to clipboard operation
ChatGPT copied to clipboard

with Chat GPT plus - can't use the link sent via e-mail to login when at capacity [Bug]

Open zgrummedical opened this issue 2 years ago • 6 comments

Version

0.10.3

Bug description

with the new ChatGPT plus - no place to enter the link to login from the link sent via e-mail to circumvent the over capacity issue

OS

windows 10

Environment

No response

zgrummedical avatar Feb 14 '23 13:02 zgrummedical

See feature request #331 for the temporary work around

Romboter avatar Feb 14 '23 17:02 Romboter

I had same issue before...but I changed theme(Light to Dark)and found it worked! I don't know why...but by this way, I can login with my account

NAMapollon avatar Feb 22 '23 08:02 NAMapollon

Same problem

johnrphilip avatar Feb 23 '23 20:02 johnrphilip

You can try adding the following script to fix it (Menu -> Preferences -> Inject Script -> main.js):

// *** ChatGPT User Script ***
// @github: https://github.com/lencx/ChatGPT
// @path: /Users/lencx/.chatgpt/main.js

console.log('🤩 Hello ChatGPT!!!');

document.addEventListener("click", (e) => {
  const origin = e.target.closest("a");
  if (!origin || !origin.target) return;
  origin.target = '_self';
});

After saving the file, restart the application.

lencx avatar Feb 24 '23 02:02 lencx

I really appreciate to make this app and use it everyday. Btw, would you mind fixing DALLE2 login...? I'd like to login DALLE2 in the app. Sometimes it works and sometimes it doesn't work.

NAMapollon avatar Feb 24 '23 03:02 NAMapollon

You can try adding the following script to fix it (Menu -> Preferences -> Inject Script -> main.js):

// *** ChatGPT User Script ***
// @github: https://github.com/lencx/ChatGPT
// @path: /Users/lencx/.chatgpt/main.js

console.log('🤩 Hello ChatGPT!!!');

document.addEventListener("click", (e) => {
  const origin = e.target.closest("a");
  if (!origin || !origin.target) return;
  origin.target = '_self';
});

After saving the file, restart the application.

Can you explain how this works a bit?

nickmccally avatar Mar 03 '23 19:03 nickmccally