// ==UserScript== // @name 屏蔽知乎隐私协议 // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @include http://*.zhihu.com/* // @include https://*.zhihu.com/* // @grant none // @downloadURL https://update.greasyfork.icu/scripts/42956/%E5%B1%8F%E8%94%BD%E7%9F%A5%E4%B9%8E%E9%9A%90%E7%A7%81%E5%8D%8F%E8%AE%AE.user.js // @updateURL https://update.greasyfork.icu/scripts/42956/%E5%B1%8F%E8%94%BD%E7%9F%A5%E4%B9%8E%E9%9A%90%E7%A7%81%E5%8D%8F%E8%AE%AE.meta.js // ==/UserScript== (function() { 'use strict'; // Your code here... setTimeout(function(){ document.querySelector('span>.Modal-wrapper').parentNode.parentNode.parentNode.remove(); setTimeout(function(){ document.querySelector('html').style.cssText ="overflow: auto; margin-right: 17px;"; },100); },100); })();