// ==UserScript== // @name 阿里云盘网页优化- 进度条隐藏 / 播放窗口防遮挡 / 去广告 // @namespace github.com/openstyles/stylus // @version 1.1.1 // @description 视频进度条隐藏(移动鼠标再启用),视频音频播放控制窗口防遮挡,去广告 // @author yui // @grant GM_addStyle // @run-at document-start // @match *://*.aliyundrive.com/* // @downloadURL none // ==/UserScript== (function() { let css = ` .text-primary--3DHOJ{overflow:visible;font-weight:bold} .loader--3P7-4,.loader--zXBWG{opacity:0.5!important} .outer-wrapper--3ViSy,.video-player--k1J-M{opacity:0!important} .outer-wrapper--3ViSy:hover,.video-player--k1J-M:hover{opacity:0.6!important} .button--1pH7M,.container--CIvrv{display:none} .sign-bar--1XrSl,.ai-summary-btn--fQnJ{display:none!important} `; 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); } })();