// ==UserScript== // @name 云文档显示优化 // @namespace https://orthogonalandparallel.github.io/ // @version 1.0 // @description 自动化用例失败分析 // @author JinChen // @match *://*/* // @grant GM_xmlhttpRequest // @license MIT // @match https://docs.yonyoucloud.com/l // ==/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); })();