Skip to content

Instantly share code, notes, and snippets.

@arturo182
Last active November 9, 2022 23:55
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arturo182/9a65ed1a5a1b7b8978b3bc48dc7adeea to your computer and use it in GitHub Desktop.
Save arturo182/9a65ed1a5a1b7b8978b3bc48dc7adeea to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Remove bluechecks from all Twitter user names
// @match *://*.twitter.com/*
// @grant none
// @version 1.0
// @author arturo182
// @require https://code.jquery.com/jquery-3.6.0.min.js
// @require https://gist.github.com/raw/2625891/waitForKeyElements.js
// ==/UserScript==
(function() {
'use strict';
const $ = window.jQuery;
waitForKeyElements('[aria-label="Verified account"]', function (el) {
$(el).parent().remove();
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment