Greasy Fork 还支持 简体中文。

ChatGPT Show Edit Button

Restores the Copy and Edit button as a quick fix

  1. // ==UserScript==
  2. // @name ChatGPT Show Edit Button
  3. // @namespace ChatGPT Tools by Vishanka
  4. // @version 1.0
  5. // @description Restores the Copy and Edit button as a quick fix
  6. // @author Vishanka
  7. // @match https://chatgpt.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11.  
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. // Create a style element to impose our dominion over the hidden element.
  17. const style = document.createElement('style');
  18. style.type = 'text/css';
  19. style.innerHTML = "div.absolute.bottom-0.right-full.top-0 { display: block !important; left: -65px !important; }";
  20.  
  21.  
  22. // Append the style element to the document head or fallback to the document root.
  23. (document.head || document.documentElement).appendChild(style);
  24. })();