随笔- 191  文章- 0  评论- 3  阅读- 58952 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// ==UserScript==
// @name zhihu
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://*.zhihu.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=zhihu.com
// @grant none
// ==/UserScript==
 
(function() {
    'use strict';
    const $style = document.createElement('style');
    $style.type = 'text/css';
    $style.textContent = `.Modal-wrapper{display:none !important;} body{overflow:scroll;height:100vh;}`;
    document.head.appendChild($style);
    window.onload = ()=>{
        const chosen = document.getElementsByClassName('Modal-backdrop')[0].parentElement.parentElement.parentElement.parentElement
        chosen.parentNode.removeChild(chosen)
    }
})();

  

 posted on   laremehpe  阅读(57)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· 单线程的Redis速度为什么快?
· 展开说说关于C#中ORM框架的用法!
· Pantheons:用 TypeScript 打造主流大模型对话的一站式集成库
· SQL Server 2025 AI相关能力初探
点击右上角即可分享
微信分享提示