
获得徽章 0
- 去掉知乎强制登录-pc
// ==UserScript==
// @name 去掉逼乎强制登录
// @namespacetampermonkey.net
// @version 0.1
// @description try to take over the world!
// @author You
// @matchwww.zhihu.com*
// @grant none
// ==/UserScript==
(function() {
'use strict';
let style = document.createElement('style')
style.innerHTML = `.Modal-wrapper{display:none!important;}
html {overflow: initial!important;}
`
window.document.head.append(style)
window.onload = function () {
document.querySelector('.Modal-wrapper').remove()
}
// Your code here...
})();展开116