// ==UserScript== // @name 知乎手机页面优化 // @namespace https://greasyfork.org/users/439775 // @version 0.1 // @description 知乎手机页面优化,自动展开,无APP提示 // @author EricSong // @match http*://www.zhihu.com/question/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; // 自动展开 document.querySelectorAll('.RichContent.is-collapsed') .forEach(n => { n.firstElementChild.style.removeProperty('max-height'); n.classList.remove('is-collapsed'); }); // 移除App打开按钮 document.querySelector('.OpenInAppButton').remove(); // 移除手机modal document.querySelector('.MobileModal-wrapper').remove(); document.querySelector('body').style.removeProperty('overflow'); })();