85 Tube

85 tube

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
// ==UserScript==
// @name         85 Tube
// @version      0.2
// @description  85 tube
// @author       You
// @match        https://85tube.com/*
// @grant        none
// @namespace https://greasyfork.org/users/761733
// ==/UserScript==

(function() {

        setInterval(function()
        {
            try
            {
                //Array.from(document.querySelector("div.fp-player").children).filter(x => x.tagName.toLowerCase() != 'video').forEach(x=>x.remove());
                let video = document.querySelector("div.fp-player video");
                video.setAttribute("controls", "true");
                document.querySelector("div.fp-player").replaceWith(video);
            }catch(err)
            {

            }
        }, 200);

    // Your code here...
})();