yimuhe

enter something useful

Устаревшая версия за 21.02.2018. Перейдите к последней версии.

// ==UserScript==
// @name         yimuhe
// @namespace    http://your.homepage/
// @version      0.1
// @description  enter something useful
// @author       You
// @include      http://www.j15av.com/*
// @include      http://www.j18ib.com/*
// @grant        none
// ==/UserScript==



(function () {
	$.each($("a[href^='redirect.php?url']"),function(index,a){ 
        var host = location.host;
        a.href = decodeURIComponent(a.href.replace("http://"+host+"/cn/redirect.php?url=",""));
        a.text = a.text + "    " + a.href + "      ";
        if(a.href.includes("yimuhe")){
            $(a).parentsUntil("tr").closest('.t').css('background-color', '#6B6C83');
        }
    });

}) ();