Greasy Fork

Greasy Fork is available in English.

禁用知乎

Stop Wasting Time On Zhihu.com!

当前为 2018-12-14 提交的版本,查看 最新版本

// ==UserScript==
// @name         Ban Zhihu
// @name:zh-CN   禁用知乎
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  Stop Wasting Time On Zhihu.com!
// @description:zh-cn 访问知乎时自动跳回之前页面
// @author       You
// @match        https://*.zhihu.com/
// @match        https://zhuanlan.zhihu.com/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    window.history.back(-1)
    // Your code here...
})();