修改有道云笔记分享页面宽度

修改有道云笔记分享页面宽度,以便更加适合阅读。

目前为 2018-09-20 提交的版本。查看 最新版本

// ==UserScript==
// @name         修改有道云笔记分享页面宽度
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  修改有道云笔记分享页面宽度,以便更加适合阅读。
// @author       High Jiang
// @match        *://note.youdao.com/share/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var style = document.createElement('style');
    style.innerHTML = '.file{ width: 1080px}';
    document.head.appendChild(style);

})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址