Advertisement
Guest User

NG

a guest
Mar 3rd, 2013
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name       NG Fix
  3. // @namespace  http://use.i.E.your.homepage/
  4. // @version    1.0
  5. // @description  Fixes the forum bug with apostophe's on Newgrounds
  6. // @include    http://www.newgrounds.com/*
  7. // @copyright  2013, Omar Shehata
  8. // ==/UserScript==
  9.  
  10. document.documentElement.innerHTML = document.documentElement.innerHTML.replace(/âEUTM/g,"'");
  11.  
  12. document.documentElement.innerHTML = document.documentElement.innerHTML.replace(/âEUoe/g,'"');
  13. document.documentElement.innerHTML = document.documentElement.innerHTML.replace(/âEU/g,'"');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement