您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
2024/10/18 08:51:46
// ==UserScript== // @name 微信公众号文章阅读页面优化 // @namespace Violentmonkey Scripts // @match https://mp.weixin.qq.com/s* // @grant none // @version 1.0 // @author - // @description 2024/10/18 08:51:46 // @license MIT // ==/UserScript== // 等待网页完成加载 window.addEventListener('load', function () { // 加载完成后执行的代码 setTimeout(() => { document.querySelector('#js_pc_qr_code').setAttribute("style", "display: none !important;") }, 1000) document.querySelector('.rich_media_area_primary_inner').setAttribute('style', "max-width: 61%;") }, false);