Skip to content

Instantly share code, notes, and snippets.

@BirdMachine
Last active August 29, 2015 14:19
Show Gist options
  • Save BirdMachine/bcf758beee9847ca85f6 to your computer and use it in GitHub Desktop.
Save BirdMachine/bcf758beee9847ca85f6 to your computer and use it in GitHub Desktop.
Quick snippet to hide the DM menu for the newly Deprocated DM 'feature' on Twitter
// ==UserScript==
// @name Don't DM Me
// @namespace NotAnotherDM
// @description Hides the DM 'feature' (aka bug) on twitter
// @include https://twitter.com/*
// @version 1
// @grant none
// ==/UserScript==
document.getElementsByClassName("global-dm-nav")[0].style.display="none";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment