NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @author TenATaco // @name KissAnime Video Expander // @namespace http://kissanime.to/ // @version 1.2.1 // @description Remove the page background (Everything, Including Ads) then expands the video player while watching videos on KissAnime. It's like full screen without full screen. // @include *kissanime.*/Anime/*/* // @grant none // @require http://code.jquery.com/jquery-latest.js // @updateURL https://openuserjs.org/meta/tenataco/KissAnime_Video_Expander.meta.js // @downloadURL https://openuserjs.org/src/scripts/tenataco/KissAnime_Video_Expander.user.js // @copyright 9999, TAT // ==/UserScript== /* Save the video do that it does not get removed with the page. */ var save = $('#divContentVideo').detach(); /* Delete the page content */ $('body').remove(); /* Add the video back (save) */ $('html').append(save); /* Change the player to your screen w/h */ $( document.getElementsByTagName('iframe')[0] ).css({ "width": window.innerWidth, "height": window.innerHeight }); /* Resize the player with your screen */ $( window ).resize(function() { $( document.getElementsByTagName('iframe')[0] ).css({ "width": $( window ).width(), "height": $( window ).height() }); }); /* Trick the player into thinking you're in full screen! */ $(".vjs-control-bar").remove(); $("#my_video_1_html5_api").prop({ controls: true });