Комментарий #11616187

pomatu
Чатгпт без регистрации и смс (затыкатель всплывающего модального окна с просьбой залогинится)
спойлер
// ==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
nikola2222#
@pomatu, я вообще не захожу на оф сайт чатгпт, юзаю openrouter и его аналоги
назад
Твой комментарий
Вернуться к редактированию
Предпросмотр
Скрыть