// ==UserScript== // @name Always On Video For kissanime.ru // @version 0.1 // @description Make kissanime.ru always show the video stream // @author Sined_121 // @match https://kissanime.ru/* // @grant none // @namespace http://tampermonkey.net/ // @downloadURL none // ==/UserScript== (function() { 'use strict'; document.getElementById("divContentVideo").style.display = "inline"; })();