Greasy Fork is available in English.
公众号文章页面加宽,原始公众号文章显示过窄
当前为
// ==UserScript==
// @name 公众号文章页面加宽
// @namespace http://tampermonkey.net/
// @version 1.0.2
// @description 公众号文章页面加宽,原始公众号文章显示过窄
// @author yongli.he
// @match https://mp.weixin.qq.com/*
// @icon none
// @grant none
// @license GPL-3.0 License
// ==/UserScript==
(function() {
'use strict';
// 修改文章宽度
document.querySelector('.pages_skin_pc.wx_wap_desktop_fontsize_2 .rich_media_area_primary_inner').style['max-width'] = '80vw';
// 加宽所有图片
setTimeout(() => {
document.querySelectorAll('img').forEach(e => e.style.minWidth = '70%');
}, 1000);
})();