🎉 欢迎访问GreasyFork.Org 镜像站!本镜像站由公众号【爱吃馍】搭建,用于分享脚本。联系邮箱📮

Greasy fork 爱吃馍镜像

Greasy Fork is available in English.

Leetcode Banner Hidden

当大家在公司刷题时,Leetcode Nav栏是不是很显眼,有没有想把它隐藏调的冲动?本脚本就是为了解决这个问题而生。

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

You will need to install an extension such as Tampermonkey to install this script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

// ==UserScript==
// @name         Leetcode Banner Hidden
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  当大家在公司刷题时,Leetcode Nav栏是不是很显眼,有没有想把它隐藏调的冲动?本脚本就是为了解决这个问题而生。
// @author       Melonkid
// @match        https://leetcode.cn/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net
// @grant        none
// @require https://cdn.bootcss.com/jquery/1.12.4/jquery.min.js
// @run-at       document-end
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    function hideNav() {
        let navDoc = document.querySelector("nav");
        if (navDoc) {
            navDoc.style.display = 'none';
            observer.disconnect();  // 如果找到元素,停止观察
        }
    }

    hideNav();  // 尝试首次隐藏

    // 如果首次隐藏失败,使用 MutationObserver
    var observer = new MutationObserver(hideNav);
    observer.observe(document.body, {childList: true, subtree: true});

})();