// ==UserScript== // @name anime1.me隱藏控制列 // @namespace 1 // @version 1.0.0 // @description anime1.me隱藏控制列,移入才顯示 // @author Leadra // @homepageURL https://greasyfork.org/zh-TW/users/4839 // @license MIT // @grant GM_addStyle // @run-at document-start // @include https://anime1.me*/* // @downloadURL none // ==/UserScript== (function() { let css = ` .video-js .vjs-control-bar:not(:hover) {opacity:0; } /* .video-js .vjs-tech:not(fullscreen){ height: 70%; width: 60%; position:fixed; z-index:0; left:0; top:0; }*/ `; if (typeof GM_addStyle !== "undefined") { GM_addStyle(css); } else { const styleNode = document.createElement("style"); styleNode.appendChild(document.createTextNode(css)); (document.querySelector("head") || document.documentElement).appendChild(styleNode); } })();