隐藏掘金手机号绑定弹窗

强制隐藏掘金手机号绑定弹窗

// ==UserScript==
// @name         隐藏掘金手机号绑定弹窗
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  强制隐藏掘金手机号绑定弹窗
// @author       Your Name
// @match        https://juejin.cn/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    const style = document.createElement('style');
    style.textContent = `
        body {
            overflow: auto !important;
        }
        .global-component-box {
            display: none !important;
        }
    `;
    document.head.appendChild(style);
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址