Duclv

Streamlive.to

May 4th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         Streamlive.to
  3. // @namespace    http://tampermonkey.net/
  4. // @version      0.1
  5. // @description  try to take over the world!
  6. // @author       You
  7. // @match        http://www.streamlive.to/view/*
  8. // @match        https://www.streamlive.to/view/*
  9. // @grant        none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13.     'use strict';
  14.     setInterval(function(){
  15.         if(jwplayer("container").getState()!="playing") {
  16.             location.reload();
  17.         }
  18.     },8000);
  19.     document.querySelector('#container').style.position="fixed";
  20.     document.querySelector('#header').style.display="none";
  21.     document.querySelector('video').style.height="initial";
  22. })();
Add Comment
Please, Sign In to add comment