Skip to content

Instantly share code, notes, and snippets.

@Cydonia7
Created February 20, 2020 12:55
Show Gist options
  • Save Cydonia7/fa56ff5c95444459cf2f4bbe3b88d261 to your computer and use it in GitHub Desktop.
Save Cydonia7/fa56ff5c95444459cf2f4bbe3b88d261 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Exercism completed in green
// @namespace http://tampermonkey.net/
// @version 0.1
// @author You
// @match https://exercism.io/my/tracks/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var css = '[data-status="Completed"] { background: #85e285 !important; } [data-status="Completed"] .hover { display: inline !important; } [data-status="Completed"] .normal { display: none !important; }';
var style = document.createElement('style');
document.head.appendChild(style);
style.type = 'text/css';
style.appendChild(document.createTextNode(css));
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment