您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
小鹅通 pc 页面优化
// ==UserScript== // @name 小鹅通PC页面优化 // @namespace http://tampermonkey.net/ // @description 小鹅通 pc 页面优化 // @author zhuxin // @license MIT // @description try to take over the world! // @author You // @match https://appuwwsm6cl6690.h5.xiaoeknow.com/* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // @version 0.0.1.20220618155014 // ==/UserScript== ;(function () { // Your code here... const css = ` .page-layout{ position: absolute; } .safe-area-inset-bottom{ position: absolute !important; } .distribute , .btn-menu { right: 20px !important; } .video_out_wrapper , .video-player-wrapper{ height: 0 !important; } .video_wrapper{ position: fixed !important; width: 62% !important; height: 800px !important; right: 150px !important; top: 200px !important; } ` const style = document.createElement("style") style.innerHTML = css document.head.appendChild(style) })()