Advertisement
Paradox460

FUCK NP LINKS

Mar 14th, 2014
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Remove dumb NP links
  3. // @namespace fuckredditnplinks
  4. // @include http://np.reddit.com/r/*
  5. // @version 1
  6. // ==/UserScript==
  7.  
  8. var npLink = document.location.href;
  9. var newLink = npLink.replace('://np.', '://www.');
  10. document.location.replace(newLink);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement