马克思页面调整
// ==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);
})();