Greasy Fork is available in English.

xcancel hide twitter blue

hides blue checks on xcancel

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

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

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==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();
    }
})();