Skip to content

Instantly share code, notes, and snippets.

@selfawaresoup
Created April 5, 2023 11:41
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save selfawaresoup/79c7e9abddcc6f45ab7bf97f8cb40042 to your computer and use it in GitHub Desktop.
Save selfawaresoup/79c7e9abddcc6f45ab7bf97f8cb40042 to your computer and use it in GitHub Desktop.
Twitter Userscript: No Doge
// ==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