Created
April 5, 2023 11:41
-
-
Save selfawaresoup/79c7e9abddcc6f45ab7bf97f8cb40042 to your computer and use it in GitHub Desktop.
Twitter Userscript: No Doge
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 No Doge Twitter | |
// @match https://twitter.com/* | |
// @run-at document-start | |
// @grant GM.addStyle | |
// ==/UserScript== | |
let css = ` | |
a[aria-label=Twitter] svg { display: none; } | |
div[aria-label=Loading…] { display: none; } | |
` | |
GM.addStyle(css); | |
console.log("shut up, elon"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment