Greasy Fork is available in English.
Make kissanime.ru always show the video steam
当前为
// ==UserScript==
// @name Always On Video
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Make kissanime.ru always show the video steam
// @author Sined_121
// @match https://kissanime.ru/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.getElementById("divContentVideo").style.display = "inline";
})();