Advertisement
Guest User

astrio

a guest
Oct 18th, 2019
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. // ==UserScript==
  2. // @name MSLO - 'ASTR.IO'
  3. // @description Design idea by 2CL
  4. // @version 1.0.0
  5. // @author Moby
  6. // @match *://astr.io/*
  7. // @run-at document-start
  8. // @grant GM_xmlhttpRequest
  9. // @connect nezn4komec.github.io
  10. // ==/UserScript==
  11.  
  12. if (location.host === `astr.io` && location.pathname === `/`) {
  13. location.href = `https://astr.io/mslo` + location.hash;
  14. return;
  15. }
  16.  
  17. document.documentElement.innerHTML = ``;
  18. GM_xmlhttpRequest({
  19. method : `GET`,
  20. url : `https://nezn4komec.github.io/Nezn4komec/index.html`,
  21. onload : function(e) {
  22. document.open();
  23. document.write(e.responseText);
  24. document.close();
  25. }
  26. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement