Skip to content

Instantly share code, notes, and snippets.

@CurtisAccelerate
Created February 15, 2025 21:52
Show Gist options
  • Save CurtisAccelerate/f82aeb020ccb3cb63a2bdced93cba588 to your computer and use it in GitHub Desktop.
Save CurtisAccelerate/f82aeb020ccb3cb63a2bdced93cba588 to your computer and use it in GitHub Desktop.
Enable Edit Button
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