微信公众号网页宽屏显示

Remove PageNote elements

// ==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
// ==/UserScript==

(function() {
  var richMedia = document.querySelector('#page-content .rich_media_area_primary_inner');
  if (richMedia) {
    richMedia.classList.remove('rich_media_area_primary_inner');
  }
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址