====== tampermonkey 油猴 ====== ===== 马克思页面调整 ===== // ==UserScript== // @name 马克思页面调整 // @namespace http://tampermonkey.net/ // @version 0.3 // @description 修改马克思页面宽度,以便更加适合阅读。 // @author Donghua Gu // @match *://www.marxists.org/* // @grant none // ==/UserScript== (function() { 'use strict'; var style = document.createElement('style'); style.innerHTML = '.file{ min-width: 256px; max-width: 1080px; width: 100%; padding-left: 0px; padding-right: 0px;} .file-name-container{ padding-left: 5%;} body{max-width:850px; margin:auto;} '; document.head.appendChild(style); })(); ===== 常用脚本 ===== * [[https://greasyfork.org/en/scripts/412212-%E7%9F%A5%E4%B9%8E%E7%BE%8E%E5%8C%96 | 知乎美化脚本]]