Greasy Fork

Always On Video For kissanime.ru

Make kissanime.ru always show the video stream

// ==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/
// ==/UserScript==

(function() {
    'use strict';

    document.getElementById("divContentVideo").style.display = "inline";
})();