NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name OriginalTrilogy.com - Cache-Buster // @namespace http://originaltrilogy.com // @version 0.1 // @description bypass browser cache for avatar images on OriginalTrilogy.com // @author dahmage // @match http://originaltrilogy.com/* // @grant none // ==/UserScript== var avatars = document.querySelectorAll('a.avatar > img'); var i; for (i = 0; i < avatars.length; ++i) { avatars[i].src += "#" + new Date().getTime(); }