GGn Ignore Requests

Ignore individual requests and by user

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

You will need to install an extension such as Tampermonkey 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.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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.

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

// ==UserScript==
// @name         GGn Ignore Requests
// @namespace    none
// @version      2
// @description  Ignore individual requests and by user
// @author       ingts
// @match        https://gazellegames.net/requests.php*
// @grant        GM_setValue
// @grant        GM_getValue
// @grant        GM_deleteValue
// ==/UserScript==

if (location.href.includes('action=view')) {
    const id = new URL(location.href).searchParams.get('id')
    let ignored = GM_getValue(id)
    const button = document.createElement('a')
    button.href = 'javascript:'
    button.className = 'brackets'
    button.textContent = ignored ? ' Unignore ' : ' Ignore '
    document.querySelector('div.linkbox').append(button)
    button.onclick = () => {
        if (ignored) {
            GM_deleteValue(id)
            button.textContent = ' Ignore '
            ignored = false
        } else {
            GM_setValue(id, 1)
            button.textContent = ' Unignore '
            ignored = true
        }
    }

    let users = GM_getValue('users', [])
    const name = document.querySelector("td > strong > a").textContent
    const button2 = document.createElement('a')
    button2.href = 'javascript:'
    button2.className = 'brackets'
    let userIgnored = users.includes(name)
    button2.textContent = userIgnored ? ' Unignore User ' : ' Ignore User '
    document.querySelector('div.linkbox').append(button2)
    button2.onclick = () => {
        if (userIgnored) {
            users = users.filter(n => n !== name)
            GM_setValue('users', users)
            button2.textContent = ' Ignore User '
            userIgnored = false
        } else {
            users.push(name)
            GM_setValue('users', users)
            button2.textContent = ' Unignore User '
            userIgnored = true
        }
    }
} else if (location.href.endsWith('requests.php') || location.href.includes('page=')) {
    const users = GM_getValue('users', [])
    document.querySelectorAll('#requests_list tr:not(.colhead_dark)').forEach(row => {
        if (GM_getValue(/\d+/.exec(row.querySelector('a').href)[0]) || users.includes(row.querySelector('a.username').textContent)) row.remove()
    })
}