t66y links clicked highlight!
// ==UserScript==
// @name t66y links clicked highlight
// @namespace http://tampermonkey.net/
// @version 0.1
// @description t66y links clicked highlight!
// @author You
// @match https://www.t66y.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=t66y.com
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
var style = document.createElement("style");
style.type = "text/css";
var text = document.createTextNode("h3 a:visited {color: #C3BFBF!important;}");
style.appendChild(text);
var head = document.getElementsByTagName("head")[0];
head.appendChild(style);
})();