Greasy Fork is available in English.
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";
})();