Greasy Fork

Always On Video

Make kissanime.ru always show the video steam

目前为 2019-12-11 提交的版本。查看 最新版本

// ==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";
})();