Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.99 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Planetarion Catch Tools for Conspiracy Theory 3.0.0
  3. // @namespace https://cthq.net/
  4. // @version 3.0.0
  5. // @description This tool will grab information and pass it on to the CT Tools. In no way does it grab passwords, or automate playing your PA account. Study the excludes and includes carefully, to convince yourself it is safe to use.
  6. // @run-at document-start
  7. // @exclude https://*/login*
  8. // @exclude https://*/signup*
  9. // @exclude https://*/register*
  10. // @exclude https://*/preferences*
  11. // @exclude https://*/support*
  12. // @exclude https://*/manual*
  13. // @exclude https://*/chat*
  14. // @exclude https://*/forum*
  15. // @exclude https://*/botfiles*
  16. // @exclude https://pirate.planetarion.com/*
  17. // @exclude https://ninja.planetarion.com/*
  18. // @exclude https://forum.planetarion.com/*
  19. // @exclude https://www.planetarion.com/*
  20. // @exclude https://planetarion.com/*
  21. // @include https://*.planetarion.com/*.p*
  22. // @include https://pa.ranultech.co.uk/*.p*
  23. // @match https://*.planetarion.com/*.p*
  24. // @match https://pa.ranultech.co.uk/*.p*
  25. // @copyright Original Copyright: 2008-2013, William Elwood (Will, will@howlingrain.co.uk). Adapted for CT by Rene Lodder (remyafk@gmail.com) 2011-2013
  26. // @license GNU General Public License version 3; https://www.gnu.org/licenses/gpl.html
  27. // ==/UserScript==
  28.  
  29.  
  30. (function(w) {
  31. var d = w.document, l = w.location;
  32. if(!d || !l) return;
  33. var h, s = d.createElement('script');
  34. s.async = true;
  35. s.setAttribute('type', 'text/javascript');
  36. s.setAttribute('src', 'https://ass.cthq.net/grmo/userjs.php?v=3.0.0&page=' + escape(l.pathname.replace(/\/?(.+)\.p.+/, '$1')));
  37. inject();
  38.  
  39. function inject() {
  40. if(h = (d.head || d.getElementsByTagName('head')[0] || d.body || d.documentElement)) h.insertBefore(s, h.firstChild);
  41. else setTimeout(inject, 9);
  42. }
  43. })(window);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement