微信公众号文章全屏显示

try to take over the world!

  1. // ==UserScript==
  2. // @name 微信公众号文章全屏显示
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author You
  7. // @match https://mp.weixin.qq.com/s/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. var dom1 = document.getElementsByClassName("qr_code_pc")[0];
  14. var dom2 = document.getElementsByClassName("rich_media_area_primary_inner")[0];
  15. dom1.parentNode.removeChild(dom1);
  16. dom2.classList.remove("rich_media_area_primary_inner");
  17. // Your code here...
  18. })();

QingJ © 2025

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