Advertisement
Guest User

Untitled

a guest
May 31st, 2016
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. // ==UserScript==
  2. // @name SlitherPlus
  3. // @namespace slitherplus.io
  4. // @version 3
  5. // @description slitherplus.io
  6. // @author slitherplus.io
  7. // @require http://code.jquery.com/jquery-latest.js
  8. // @updateURL http://slitherplus.io/slither.user.js
  9. // @downloadURL http://slitherplus.io/slither.user.js
  10. // @match http://slither.io/
  11. // @run-at document-start
  12. // @grant GM_xmlhttpRequest
  13. // ==/UserScript==
  14.  
  15. var s = document.createElement('script');
  16. s.src = 'https://code.jquery.com/jquery-1.12.3.min.js';
  17. s.onload = function() {
  18. document.head.innerHTML += '<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">';
  19. var s = document.createElement('script');
  20. s.src = 'http://slitherplus.io/script.js';
  21. s.onload = function() {
  22. this.parentNode.removeChild(this);
  23. };
  24. (document.head || document.documentElement).appendChild(s);
  25. };
  26. (document.head || document.documentElement).appendChild(s);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement