// ==UserScript== // @name 微信公众号网页宽屏显示 // @namespace http://tampermonkey.net/ // @version 0.2 // @description Remove PageNote elements // @author Alex // @match https://*/* // @icon https://www.google.com/s2/favicons?domain=tampermonkey.net // @grant none // @license Apache 2.0 // @downloadURL none // ==/UserScript== (function() { var richMedia = document.querySelector('#page-content .rich_media_area_primary_inner'); if (richMedia) { richMedia.classList.remove('rich_media_area_primary_inner'); } })();