Leetcode Banner Hidden

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

07.09.2023 itibariyledir. En son verisyonu görün.

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==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});

})();