// ==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 https://update.greasyfork.cloud/scripts/490464/anime1me%E9%9A%B1%E8%97%8F%E6%8E%A7%E5%88%B6%E5%88%97.user.js // @updateURL https://update.greasyfork.cloud/scripts/490464/anime1me%E9%9A%B1%E8%97%8F%E6%8E%A7%E5%88%B6%E5%88%97.meta.js // ==/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); } })();