Greasy Fork

Greasy Fork is available in English.

Poe.ninja - Hide Claimed Bounties from races

Hides claimed bounty cards on the poe.ninja race pages.

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Poe.ninja - Hide Claimed Bounties from races
// @namespace    http://greasyfork.icu/en/users/1591206-rexus88
// @version      0.1
// @description  Hides claimed bounty cards on the poe.ninja race pages.
// @author       ReXuS88
// @match        https://poe.ninja/poe1/race/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    const hideClaimed = () => {
        // Target the specific card container class
        const cards = document.querySelectorAll('.bg-coolgrey-850');

        cards.forEach(card => {
            // Only keep the card if it explicitly says "Unclaimed"
            if (!card.innerText.includes('Unclaimed')) {
                card.style.display = 'none';
            } else {
                card.style.display = '';
            }
        });
    };

    // Run on initial load
    hideClaimed();

    // Use MutationObserver to catch new cards when scrolling or switching tabs
    const observer = new MutationObserver((mutations) => {
        hideClaimed();
    });

    observer.observe(document.body, {
        childList: true,
        subtree: true
    });
})();