NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Old times // @namespace http://hackforums.net/member.php?action=profile&uid=355243 // @author Arrogance@HF // @description back to the old times // @include http://hackforums.net/* // @include https://hackforums.net/* // @version 1.3.3.7 // ==/UserScript== var ilist = document.images; for(var i = 0; i < ilist.length; i++) { img=ilist[i] if(img.src == "http://hackforums.net/images/modern_bl/groupimages/english/ub3r.png") { img.src = "http://i.imgur.com/Oxs67eS.png"; } if(img.src == "http://hackforums.net/images/modern_bl/groupimages/english/l33t.png") { img.src = "http://i.imgur.com/Jwr3V7o.png"; } if(img.src == "http://hackforums.net/images/modern_bl/groupimages/english/staff.png") { img.src = "http://i.imgur.com/LLSoJ2U.png"; } if(img.src == "http://hackforums.net/images/modern_bl/groupimages/english/admin-bar.png") { img.src = "http://i.imgur.com/lLSmOSu.png"; } if(img.src == "http://hackforums.net/images/modern_bl/groupimages/english/mentor.png") { img.src = "http://i.imgur.com/h64fVhJ.png"; } if(img.src == "http://hackforums.net/images/modern_bl/groupimages/english/3p1c.png") { img.src = "http://i.imgur.com/jGYMAp8.png"; } }