Skip to content

Instantly share code, notes, and snippets.

@fortserious
Last active February 28, 2017 18:03
Show Gist options
  • Save fortserious/0e11ee63238868ec950309098eeee0e3 to your computer and use it in GitHub Desktop.
Save fortserious/0e11ee63238868ec950309098eeee0e3 to your computer and use it in GitHub Desktop.
twitter remove verify badge on timelines
// ==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>');
@fortserious
Copy link
Author

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