Advertisement
Guest User

Untitled

a guest
Dec 17th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. if (location.host === "agar.io" && location.pathname === "/") {
  2. location.href = "http://agar.io/ogario" + location.hash;
  3. return;
  4. }
  5.  
  6. // Inject script
  7. window.stop();
  8. document.documentElement.innerHTML = "";
  9. GM_xmlhttpRequest({
  10. method : "GET",
  11. url : "http://cdn.ogario.ovh/v4/beta/",
  12. onload : function(e) {
  13. document.open();
  14. document.write(e.responseText);
  15. document.close();
  16. }
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement