Greasy Fork

微信公众号网页宽屏显示

Remove PageNote elements

目前为 2024-02-23 提交的版本。查看 最新版本

// ==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');
  }
})();