// ==UserScript== // @name 修改有道云笔记分享页面宽度 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 修改有道云笔记分享页面宽度,以便更加适合阅读。 // @author High Jiang // @match *://note.youdao.com/share/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; var style = document.createElement('style'); style.innerHTML = '.file{ width: 1080px}'; document.head.appendChild(style); })();