// ==UserScript== // @name docOptimise // @namespace https://bbs.tampermonkey.net.cn/ // @version 0.1.0 // @description try to take over the world! // @author You // @match {{match}} // ==/UserScript== (function () { 'use strict'; // Your code here... let docContent = document.querySelector('.wy-nav-content'); let pContent = document.querySelectorAll('.wy-nav-content p'); let codeContent = document.querySelectorAll('pre'); if (docContent) { docContent.style.margin = '0 auto'; docContent.style.maxWidth = 'none'; docContent.style.width = '70%'; } if(pContent) { pContent.forEach(o => { o.style.fontSize = '20px'; o.style.lineHeight = '1.8'; // o.style.marginBottom = '10px'; }) } if (codeContent) { codeContent.forEach(o => { o.style.fontSize = '18px'; }) } })();