知乎手机页面优化

知乎手机页面优化,自动展开,无APP提示

当前为 2020-09-26 提交的版本,查看 最新版本

// ==UserScript==
// @name         知乎手机页面优化
// @namespace    https://gf.qytechs.cn/users/439775
// @version      0.3.1
// @description  知乎手机页面优化,自动展开,无APP提示
// @author       EricSong
// @include      http*://www.zhihu.com/question/*
// @include      http*://*.zhihu.com/p/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // 移除遮罩层
    document.querySelector(".ModalWrap").remove();
    document.body.classList.remove("ModalWrap-body");
    document.body.style.overflow = "auto";

    // 展示内容
    document.querySelector('.RichContent').classList.remove('is-collapsed');
    document.querySelector('.RichContent-inner').style.maxHeight = 'unset';

    // 移除App打开按钮
    document.querySelector('.OpenInAppButton').remove();

    // 回滚至页首
    window.scrollTo(0, 0);
})();

QingJ © 2025

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