// ==UserScript== // @name 知乎不显示登录框 // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://www.zhihu.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=zhihu.com // @grant none // ==/UserScript== (function() { 'use strict'; var styleDom = document.createElement('style') styleDom.type = `text/css` styleDom.innerHTML = ` html{ overflow: auto!important; margin-right: 0!important } .Modal-enter,.Modal-enter-active,.Modal-enter-done{display: none!important} ` document.head.appendChild(styleDom) })();