// ==UserScript== // @name 手机网页知乎不跳转app // @namespace http://tampermonkey.net/ // @version 1.7 // @description https://greasyfork.org/zh-CN/users/ // @author zs6 // @license GPL-3.0-only // @match https://*.zhihu.com/* // @grant GM_addStyle // @run-at document-start // @downloadURL none // ==/UserScript== (function() { 'use strict'; function setUserAgent(window, userAgent) { if (window.navigator.userAgent != userAgent) { var userAgentProp = { get: function () { return userAgent; } }; try { Object.defineProperty(window.navigator, 'userAgent', userAgentProp); } catch (e) { window.navigator = Object.create(navigator, { userAgent: userAgentProp }); } } } setUserAgent(window, 'Mozilla/5.0 (Windows Phone 10)'); GM_addStyle(".MobileModal-closeButton { bottom:150px;top:initial;} .MobileModal-content--default {padding-top: 0px;}"); })();