Skip to content

Instantly share code, notes, and snippets.

@lyxal
Created June 3, 2025 04:15
Show Gist options
  • Save lyxal/f1c00cd9add1e8b6f841a51da7181d74 to your computer and use it in GitHub Desktop.
Save lyxal/f1c00cd9add1e8b6f841a51da7181d74 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Fix chat visited links being silly little binguses
// @namespace http://tampermonkey.net/
// @version 1
// @author lyxal
// @match https://chat.stackexchange.com/rooms/*
// @match https://chat.stackexchange.com/transcript/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=stackexchange.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
const styleSheet = document.createElement("style");
styleSheet.type = "text/css"
styleSheet.innerText = "a:visited {color: inherit !important;}";
document.head.appendChild(styleSheet)
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment