xcancel hide twitter blue

hides blue checks on xcancel

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         xcancel hide twitter blue
// @namespace    http://tampermonkey.net/
// @version      2025-01-23
// @description  hides blue checks on xcancel
// @author       You
// @match        https://xcancel.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=xcancel.com
// @grant        none
// @license MIT
// ==/UserScript==

// Setting esversion to 11 to use optional chaining.
/* jshint esversion: 11 */

(function() {
    'use strict';
    //remove blue check replies
    document.querySelectorAll('.icon-ok.verified-icon.blue').forEach((e) => {
        e.closest('.reply.thread.thread-line')?.remove();
    })
    //if there are no replies in the current batch, click load more
    if(document.querySelectorAll('.reply.thread.thread-line').length == 0 && window.location.href.includes('status')){
        document.querySelectorAll('.show-more a')[document.querySelectorAll('.show-more a').length - 1].click();
    }
})();