Last active
November 9, 2022 23:55
-
-
Save arturo182/9a65ed1a5a1b7b8978b3bc48dc7adeea to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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