LeetCode Minus User

I am not a LeetCode Plus user and I don’t want to see LeetCode member-only problems.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(I already have a user script manager, let me install it!)

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.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==UserScript==
// @name         LeetCode Minus User
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  I am not a LeetCode Plus user and I don’t want to see LeetCode member-only problems.
// @author       liuxueyang
// @match        https://leetcode.cn/*
// @match        https://leetcode.com/*
// @license      MIT
// @supportURL   https://github.com/liuxueyang/leetcode-minus-user/issues
// @homepageURL  https://github.com/liuxueyang/leetcode-minus-user
// ==/UserScript==

(function() {
    'use strict';

    function hideLockedProblems() {
        document.querySelectorAll('.fa-lock').forEach(lock => {
            const item = lock.closest('a');
            if (item) {
                item.style.display = 'none';
            }
        });
    }

    hideLockedProblems();

    const observer = new MutationObserver(hideLockedProblems);
    observer.observe(document.body, {
        childList: true,
        subtree: true
    });
})();