Greasy Fork is available in English.
公众号文章页面加宽,原始公众号文章显示过窄
当前为
// ==UserScript==
// @name 公众号文章页面加宽
// @namespace http://tampermonkey.net/
// @version 1.0.1
// @description 公众号文章页面加宽,原始公众号文章显示过窄
// @author Sixer
// @match https://mp.weixin.qq.com/s/F42LqQncMDLQH-WWmZ28fA
// @icon https://www.google.com/s2/favicons?sz=64&domain=qq.com
// @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';
// 删除二维码
// document.querySelector('.qr_code_pc').remove();
setTimeout(() => {
document.querySelectorAll('img').forEach(e => {
e.style.minWidth = '70%';
});
}, 1000);
})();