Torn: Unique Stars Highlighter

Highlights the content when a unique star is present in the pickpocketing section.

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name        Torn: Unique Stars Highlighter
// @namespace   https://greasyfork.org/users/966900
// @description Highlights the content when a unique star is present in the pickpocketing section.
// @version     1.1
// @author      Lazerpent, noxwaste [1811486]
// @match       https://www.torn.com/loader.php?sid=crimes
// @grant       none
// ==/UserScript==

const elementIsVisibleInViewport = (el, partiallyVisible = false) => {
    const { top, left, bottom, right } = el.getBoundingClientRect();
    const { innerHeight, innerWidth } = window;
    return partiallyVisible
        ? ((top > 0 && top < innerHeight) || (bottom > 0 && bottom < innerHeight)) &&
        ((left > 0 && left < innerWidth) || (right > 0 && right < innerWidth)) : top >= 0 && left >= 0 && bottom <= innerHeight && right <= innerWidth;
};

(function() {
    'use strict';

    if (window.location.hash !== '#/pickpocketing') {
        return;
    }


    function updateBackgroundColor() {
        const stars = document.querySelectorAll('.uniqueStars___euiiR');
        let hasChildren = false;

        for (const star of stars) {
            if (star.children.length > 0 && elementIsVisibleInViewport(star, true)) {
                hasChildren = true;
                break;
            }
        }

        const targetElement = document.querySelector('.content.responsive-sidebar-container.logged-in');
        targetElement.style.backgroundColor = hasChildren ? 'red' : '';
    }

    setInterval(updateBackgroundColor, 500);

})();