Skip to content

Instantly share code, notes, and snippets.

@rzfury
Last active April 21, 2023 02:35
Show Gist options
  • Save rzfury/aae3d2bb996c1fe5653a0574b6032083 to your computer and use it in GitHub Desktop.
Save rzfury/aae3d2bb996c1fe5653a0574b6032083 to your computer and use it in GitHub Desktop.
No checkmark twitter
// ==UserScript==
// @name No Checkmark Twitter
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Does not discriminate. Because it's useless for me.
// @author RZFury
// @match https://twitter.com/*
// @updateURL https://gist.githubusercontent.com/rzfury/aae3d2bb996c1fe5653a0574b6032083/raw/d6c670493453028cc7033e34ce46025a6536b843/no-checkmark-twitter.js
// @downloadURL https://gist.githubusercontent.com/rzfury/aae3d2bb996c1fe5653a0574b6032083/raw/d6c670493453028cc7033e34ce46025a6536b843/no-checkmark-twitter.js
// @icon https://www.google.com/s2/favicons?sz=64&domain=twitter.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
const style = 'svg[data-testid="icon-verified"] { display: none !important; }';
const styleEl = document.createElement("style");
styleEl.textContent = style;
document.head.appendChild(styleEl);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment