Adam Lui
Adam Lui
@kumaraashikant sure
hey @schmorp OpenAi has been changing the HTML for the last few days constantly breaking my scripts for no good reason which I spent all day yesterday fixing, but they...
@schmorp actually it works for me, can you tell me the userscript and browser you're using, also Autoclear ChatGPT History version
Hey @dliedke actually I just updated them to use mutation observers for improved efficiency but re: `chatgpt.isLoaded()` I see you changed to using chatbar instead of chat button. Can you...
Also can you confirm whether `chatgpt.getNewChatLink()` still works
Your `sidebarIsLoaded()` doesn't work for me because the button is not always a pencil icon (in temp chat for example) is why the original `getNewChatLink() { return document.querySelector('nav a[href="/"]'); }`...
@dliedke i still want to add you as contributor, do you think you can test if `chatgpt.getNewChatLink()` still works by pasting [chatgpt.js ](https://github.com/KudoAI/chatgpt.js/blob/main/chatgpt.js) into console and typing the function? (This...
I'm stumped why commenting out the two lines for you fixes it, because both do promise race and time out after 5s so even if selector is outdated script should've...
Does this work for you? ```js function getNewChatButton() { for (const navBtnSVG of document.querySelectorAll('nav button svg')) if (navBtnSVG.querySelector('path[d^="M15.6729"], ' // pencil-on-pad icon + 'path[d^="M3.06957"]')) // refresh icon if temp chat...
Can you copy/paste the entire https://github.com/KudoAI/chatgpt.js/blob/main/chatgpt.js in console Then ```js chatgpt.isLoaded().then(() => alert('chatgpt.isLoaded() works')) ``` and ```js chatgpt.sidebar.isLoaded().then(() => alert('chatgpt.sidebar.isLoaded() works')) ``` do they alert