Skip to content

Instantly share code, notes, and snippets.

@Dbof
Created October 23, 2016 10:48
Show Gist options
  • Save Dbof/459a1f887ae8c74c8c72487fc6e845ec to your computer and use it in GitHub Desktop.
Save Dbof/459a1f887ae8c74c8c72487fc6e845ec to your computer and use it in GitHub Desktop.
Reddit AllTimesTop Posts
// ==UserScript==
// @name All Times Top
// @namespace com.davidebove
// @match *://*.reddit.com/r/*/
// @exclude *://*.reddit.com/r/*/*/*/
// @version 1
// @copyright Dbof
// @grant none
// ==/UserScript==
tabmenu = $('ul.tabmenu');
hot = tabmenu.children().first();
clone = hot.clone();
clone.removeClass('selected');
href = hot.find('a').attr('href');
c_a = clone.find('a');
c_a.text('AllTimeTop');
c_a.attr('href', href + 'top/?sort=top&t=all');
clone.insertAfter(hot);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment