// ==UserScript== // @name 云文档显示优化 // @namespace http://tampermonkey.net/ // @version 2025-03-28 // @description try to take over the world! // @author You // @match https://docs.yonyoucloud.com/l/6cbD1Ebbdaaf // @match https://ecwps.yonyoucloud.com/office/* // @icon https://www.google.com/s2/favicons?sz=64&domain=yonyoucloud.com // @grant none // ==/UserScript== (function() { 'use strict'; // Your code here... // 创建样式标签 const style = document.createElement('style'); style.textContent = ` .w-docmap-panel-wrapper { left: 10px !important; width: 500px !important; } `; // 将样式注入到页面中 document.head.appendChild(style); })();