Advertisement
Guest User

Untitled

a guest
May 18th, 2013
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name           Choualbox GIF
  3. // @namespace      http://www.choualbox.com/blog/maxoudela
  4. // @namespace      http://choualbox.com/blog/sainsi
  5. // @description    Traduit les urls raccourcies et affiche le lien entier
  6. // @include        http://choualbox.com/*
  7. // ==/UserScript==
  8.  
  9. var length = document.images.length;
  10. for(var i = 0; i < length; i++) {
  11.      if(document.images[i].src.match(/mini.php/) && document.images[i].src.match('gif')!=-1)
  12.         document.images[i].src = document.images[i].src.replace(/mini.php\?src\=\//,'').replace(/&.+$/,'');
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement