知乎免登录

去除烦人的登录提示

La data de 07-02-2020. Vezi ultima versiune.

// ==UserScript==
// @name         知乎免登录
// @namespace    https://www.zhihu.com/
// @version      0.1
// @description  去除烦人的登录提示
// @author       System
// @match        *://www.zhihu.com/*
// @grant        none
// ==/UserScript==
function css(text) {
    var e = document.createElement('style');
    e.type = 'text/css';
    e.innerHTML = text;
    document.getElementsByTagName('head')[0].appendChild(e);
}

css(`
.Modal-wrapper{
    display: none !important;
}
html{
    overflow: auto !important;
    margin: auto !important;
}
`)