// ==UserScript== // @name Ban Zhihu // @name:zh-CN 禁用知乎 // @namespace http://tampermonkey.net/ // @version 0.1 // @description Stop Wasting Time On Zhihu.com! // @description:zh-cn 访问知乎时自动跳回之前页面 // @author You // @match https://www.zhihu.com/ // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; window.history.back(-1) // Your code here... })();