Last active
February 28, 2017 18:03
-
-
Save fortserious/0e11ee63238868ec950309098eeee0e3 to your computer and use it in GitHub Desktop.
twitter remove verify badge on timelines
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 twitter remove verify badges | |
// @namespace www.rossdoran.com | |
// @version 0.7 | |
// @description me | |
// @match https://twitter.com/* | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js | |
// @copyright ross doran 2017 | |
// @run-at document-start | |
// ==/UserScript== | |
// 'check out' this cool script | |
$('head').append('<style type="text/css">.account-group .UserBadges .Icon--verified {display:none !important;}</style>'); |
Updated to change .badges to .UserBadges, due to twitter class name change
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Updated to permanently remove all badge icons at pageload via CSS, ensuring they never display and increasing performance