Created
February 15, 2025 21:52
-
-
Save CurtisAccelerate/f82aeb020ccb3cb63a2bdced93cba588 to your computer and use it in GitHub Desktop.
Enable Edit Button
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Enabled edit ChatGPT Tamper Monkey | |
// ==UserScript== | |
// @name ChatGPT Edit Button Fix | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Force the hidden edit button to be visible on ChatGPT | |
// @author Your Name | |
// @match https://chatgpt.com/* | |
// @grant GM_addStyle | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
GM_addStyle(` | |
.relative:hover .absolute { | |
display: flex !important; | |
} | |
`); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment