Created
November 7, 2020 10:41
-
-
Save floe/d4d0b7c67641e4683b8cf959c87df070 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 HideScoresPCS | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://new.precisionconference.com/chi21b/committee/subs/* | |
// @run-at document-end | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
var style = document.createElement("style"); | |
var styleContent = document.createTextNode("td[style] { color: white; }"); | |
style.appendChild(styleContent); | |
var caput = document.getElementsByTagName("head"); | |
caput[0].appendChild(style); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment