Skip to content

Instantly share code, notes, and snippets.

@Alchiadus
Last active August 29, 2015 14:11
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 Alchiadus/4165e110f2e021180cd5 to your computer and use it in GitHub Desktop.
Save Alchiadus/4165e110f2e021180cd5 to your computer and use it in GitHub Desktop.
[Tampermonkey] Atom.io Discourse Tweaks
// ==UserScript==
// @name Atom.io Discourse Tweaks
// @namespace https://gist.github.com/Alchiadus/4165e110f2e021180cd5
// @version 0.5
// @author Alchiadus
// @description Various tweaks for Atom's Discourse forum.
// @downloadURL https://gist.github.com/Alchiadus/4165e110f2e021180cd5/raw/
// @match https://discuss.atom.io/*
// @grant GM_addStyle
// ==/UserScript==
// Hide Atom.io's Navigation Bar
GM_addStyle('.atom-io-bar { display: none !important; }');
// Hide Sticky Topics' Excerpts
GM_addStyle('.topic-list .topic-excerpt { display: none !important; }');
// Fix Visited Topics' Grey Color
GM_addStyle('.topic-list a.title.visited:not(.badge-notification) { color: #858585 !important; }');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment