Created
June 3, 2025 04:15
-
-
Save lyxal/f1c00cd9add1e8b6f841a51da7181d74 to your computer and use it in GitHub Desktop.
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
// ==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