Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Streamlive.to
- // @namespace http://tampermonkey.net/
- // @version 0.1
- // @description try to take over the world!
- // @author You
- // @match http://www.streamlive.to/view/*
- // @match https://www.streamlive.to/view/*
- // @grant none
- // ==/UserScript==
- (function() {
- 'use strict';
- setInterval(function(){
- if(jwplayer("container").getState()!="playing") {
- location.reload();
- }
- },8000);
- document.querySelector('#container').style.position="fixed";
- document.querySelector('#header').style.display="none";
- document.querySelector('video').style.height="initial";
- })();
Add Comment
Please, Sign In to add comment