Skip to content

Instantly share code, notes, and snippets.

@floe
Created November 7, 2020 10:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save floe/d4d0b7c67641e4683b8cf959c87df070 to your computer and use it in GitHub Desktop.
Save floe/d4d0b7c67641e4683b8cf959c87df070 to your computer and use it in GitHub Desktop.
// ==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