Created
January 25, 2023 10:17
-
-
Save frispete/1f1ccc4cdbda419efd147a096dbec002 to your computer and use it in GitHub Desktop.
Greasemonkey/Tampermonkey OBS Disable link underlining
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 OBS Disable link underlining | |
// @namespace frispete | |
// @version 0.1 | |
// @description Disable the ugly underlined links in OBS | |
// @author frispete | |
// @match https://build.opensuse.org/* | |
// @grant GM_addStyle | |
// @run-at document-end | |
// ==/UserScript== | |
GM_addStyle ('*, ::before, ::after { text-decoration: none !important; }'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment