// ==UserScript== // @name 公众号文章页面加宽 ByHeyl // @namespace http://tampermonkey.net/ // @version 1.0.5 // @description 公众号文章页面加宽,原始公众号文章显示过窄 // @author yongli.he // @match https://mp.weixin.qq.com/* // @icon none // @grant none // @license GPL-3.0 License // @downloadURL none // ==/UserScript== (function() { 'use strict'; function render(){ // 修改文章宽度 document.querySelector('.pages_skin_pc.wx_wap_desktop_fontsize_2 .rich_media_area_primary_inner').style['max-width'] = '80vw'; // 修改二维码位置 document.querySelector('.not_in_mm .qr_code_pc').style.cssText = 'position:fixed;top: 20px;right: 20px;'; // 加宽所有图片 document.querySelectorAll('img').forEach(e => { e.style.minWidth = '70%' }); } document.onreadystatechange = function(){ if(document.readyState === 'complete'){ setTimeout(render, 600); } } })();