ChatGPT Show Edit Button

Restores the Copy and Edit button as a quick fix

目前为 2025-02-15 提交的版本。查看 最新版本

// ==UserScript==
// @name         ChatGPT Show Edit Button
// @namespace    ChatGPT Tools by Vishanka
// @version      1.0
// @description  Restores the Copy and Edit button as a quick fix
// @author       Vishanka
// @match        https://chatgpt.com/*
// @grant        none
// ==/UserScript==



(function() {
    'use strict';

    // Create a style element to impose our dominion over the hidden element.
    const style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = "div.absolute.bottom-0.right-full.top-0 { display: block !important; left: -65px !important; }";


    // Append the style element to the document head or fallback to the document root.
    (document.head || document.documentElement).appendChild(style);
})();

QingJ © 2025

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