Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@SilverEzhik
Last active February 20, 2019 06:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SilverEzhik/9bc6d444a6493c5b8a72a84014d65695 to your computer and use it in GitHub Desktop.
Save SilverEzhik/9bc6d444a6493c5b8a72a84014d65695 to your computer and use it in GitHub Desktop.
write-only twitter
// ==UserScript==
// @name No
// @include *twitter.com/*
// @run-at document-start
// ==/UserScript==
function no() {
var x = window.location;
if (x == "https://twitter.com/home" || x == "https://twitter.com/") {
x.replace("https://twitter.com/dril/status/922321981");
} else if (x == "https://twitter.com/i/notifications" || x == "https://twitter.com/notifications") {
x.replace("https://twitter.com/mentions");
}
}
setInterval(no, 1000);
@SilverEzhik
Copy link
Author

SilverEzhik commented Feb 20, 2019

#global-nav-home, #global-actions .moments, #global-actions .notifications .new-count, .TweetImpressionsModule {
    display: none;
}

hide notification counts to free yourself of fomo

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment