Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. // ==UserScript==
  2. // @name 4chanimgfix
  3. // @namespace Hiroshima Nagasaki
  4. // @author Anonymous
  5. // @match *://boards.4chan.org/*
  6. // @grant none
  7. // ==/UserScript==
  8.  
  9. var a_scan = document.getElementsByClassName("fileThumb");
  10. var hiroshima, nagasaki;
  11. for(var i = 0; i < a_scan.length; i++) {
  12. hiroshima = a_scan[i];
  13. nagasaki = hiroshima.getAttribute('href');
  14. hiroshima.setAttribute('href', nagasaki.replace(/is2.4chan.org/gi, 'is.4chan.org'));
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement