Guest User

Untitled

a guest
Jul 23rd, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name           JoeGal
  3. // @namespace      file:///home/pebek/tmp/jg.js
  4. // @include        http:/*joemonster.org/*
  5. // ==/UserScript==
  6.  
  7. ( function() {
  8.  
  9.     images = document.getElementsByTagName('img');
  10.     for(var i = 0; i < images.length; i++)
  11.     {
  12.         if (images[i].src.match ('.*hg.joemonster.org.+'))
  13.                 images[i].src = images[i].src.replace ('hg.', '');
  14.     }
  15.  
  16.  
  17. })();
Add Comment
Please, Sign In to add comment