获得徽章 0
赞了这篇文章
赞了这篇文章
赞了这篇沸点
去掉知乎强制登录-pc
// ==UserScript==
// @name 去掉逼乎强制登录
// @namespace
tampermonkey.net
// @version 0.1
// @description try to take over the world!
// @author You
// @match
www.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...
})();
// ==UserScript==
// @name 去掉逼乎强制登录
// @namespace
// @version 0.1
// @description try to take over the world!
// @author You
// @match
// @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...
})();
展开
11
6
赞了这篇沸点
赞了这篇沸点
终于把一个小项目开源了,作为一个后端开发写前端调样式真的太太太困难了
,期间页陆陆续续中断了几次,总算写完了,github地址:
github.com,在线体验地址:mall.52jdk.com,大家觉得不错可以给个star,不喜欢的话希望大家轻喷
12
21