Created
February 18, 2019 12:52
-
-
Save wodim/27bbd0f9731bebc64e736127deace875 to your computer and use it in GitHub Desktop.
Userscript to underline all clickable stuff on all pages
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 Underline all links | |
// @match *://*/* | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
var extra_css = document.createElement("style"); | |
extra_css.innerHTML = 'a, input[type=submit], input[type=button], button, label { text-decoration: underline !important; }'; | |
document.body.appendChild(extra_css); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment