xcancel hide twitter blue

hides blue checks on xcancel

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

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

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==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();
    }
})();