Daksh7

Untitled

Apr 3rd, 2025 (edited)
413
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. // ==UserScript==
  2. // @name New Userscript
  3. // @namespace http://tampermonkey.net/
  4. // @version 2025-04-03
  5. // @description try to take over the world!
  6. // @author You
  7. // @match https://chatgpt.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=chatgpt.com
  9. // @grant GM_addStyle
  10. // ==/UserScript==
  11.  
  12. (function () {
  13. 'use strict';
  14.  
  15. // Inject custom CSS to override the background of user messages
  16. GM_addStyle(`
  17. div[class*="py-2.5"][class*="px-5"][class*="rounded-3xl"][class*="bg-token-message-surface"][class*="max-w-\\[var\\(--user-chat-width\\,70%\\)\\]"][class*="relative"] {
  18. background-color: #2a2a2a !important; /* adjust to match your desired dark mode tone */
  19. color: #f0f0f0 !important; /* optional: ensure text remains visible */
  20. }
  21. `);
  22. })();
Advertisement
Add Comment
Please, Sign In to add comment