Greasy Fork is available in English.

小鹅通PC页面优化

小鹅通 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)
})()