NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name KTT Traitor List // @namespace // @version 0.1 // @description Help identify the Kanye traitors // @author Shanko // @match http://www.kanyetothe.com/* // @require http://code.jquery.com/jquery-latest.js // ==/UserScript== var haters = ["Cole Mamba", "Clos", "Hit Wonda", "Heatle", "youknownow", "B-ri", "emd2009", "DrewChainzz", "I am a God", "Hero", "you cant be serious", "gem29", "marshmallow", "$amo", "Dope.", "YGD", "randomblackdude", "THE.KING", "Stan Rizzo", "Air Yeezy III", "Woody.", "gnarlynasty", "Grandma Ye", "Mr. Bateman", "YeezyBaby", "Adam.", "Irsone", "Spartybeats2323", "Trek", "Gxbrixl", "Destinyman50", "YeProdigy", "shady172300", "urba", "Zachary Rivera", "JHR", "c 215", "Lou", "Chi_23", "Y3", "Bleck", "Yeeezzzyyy", "ESTARGUARS", "FranklinBluth", "inFamousKicks", "Father."] $('.user_name').each(function(){ if ($.inArray(this.innerHTML, haters) > -1){ $(this).parent().css('background', 'red') } });