Guest User

Untitled

a guest
Oct 4th, 2015
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         Fix tinychat
  3. // @namespace    http://tinychat.com/
  4. // @version      0.8
  5. // @description  tinychat noscroll
  6. // @author       You
  7. // @match        http://tinychat.com/dfchat
  8. // @grant        none
  9. // ==/UserScript==
  10.  
  11.  
  12. document.onreadystatechange = function () {
  13.   if (document.readyState == "complete") {
  14.      
  15.       document.body.style.overflow = 'hidden';
  16.      
  17.       var useless = document.getElementById("right_block");
  18.       useless.parentNode.removeChild(useless);
  19.      
  20.       document.getElementById("left_block").style.width = "100%";
  21.   }
  22. }
Add Comment
Please, Sign In to add comment