Visited Lite

Mark all visited links as custom color.

目前为 2015-12-19 提交的版本。查看 最新版本

// ==UserScript==
// @name        Visited Lite
// @namespace   iFantz7E.VisitedLite
// @description Mark all visited links as custom color.
// @version     0.11
// @include		http://* 
// @include		https://*
// @run-at		document-start
// @grant       GM_addStyle
// @copyright	2015, 7-elephant
// ==/UserScript==

(function ()
{
	
function attachOnLoad(callback)
{
	window.addEventListener("load", function (e) 
	{
		callback();
	});
}

function attachOnReady(callback) 
{
	document.addEventListener("DOMContentLoaded", function (e) 
	{
		callback();
	});
}

function main()
{
	GM_addStyle("  a:visited, a:visited * { color: LightCoral !important; }  ");
}

attachOnReady(main);

})();

// End

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址