// ==UserScript== // @name ChatGPT unfuck // @namespace http://tampermonkey.net/ // @version 2025-04-26 // @description try to take over the world! // @author You // @match https://chatgpt.com/ // @icon https://www.google.com/s2/favicons?sz=64&domain=chatgpt.com // @grant none // ==/UserScript== (function() { 'use strict'; function unfuckLooper() { try { // Use a more reliable selector or query method const targetElement = document.querySelector('.text-token-text-secondary.mt-5.cursor-pointer.text-sm.font-semibold.underline'); if (targetElement) { targetElement.click(); } //console.log('working '); } catch (err) { console.log('Error in unfuckLooper:', err); } } // Initial run unfuckLooper(); // Run every second const intervalId = setInterval(unfuckLooper, 1000); // Clear interval when needed (optional) function cleanup() { clearInterval(intervalId); } window.addEventListener('beforeunload', cleanup); })();
@nikola2222