Advertisement
Onyx3173

Avatar uncaching script

Feb 20th, 2012
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Facepunch Avatar UnCache
  3. // @description Makes avatars update automatically when you change yours (clientside)
  4. // @include http://*.facepunch*.com/*
  5. //
  6. // ==/UserScript==
  7.  
  8. var imgs1 = document.getElementsByClassName('userinfo');
  9. var timestamp = new Date().getTime();
  10.  
  11. for (var i = 0, len = imgs1.length; i < len; i++) {
  12. imgs1[i].getElementsByTagName('img')[0].src += "?timestamp=" + timestamp;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement