Skip to content

Instantly share code, notes, and snippets.

@Seth-Johnson
Created March 12, 2016 02:49
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 Seth-Johnson/4594a3c66b7027ae59ec to your computer and use it in GitHub Desktop.
Save Seth-Johnson/4594a3c66b7027ae59ec to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Admin/mod link changer
// @version 0.1
// @description change the 'mod' and 'history' admin links to point to the daily stats
// @author Seth @ askubuntu.com
// @match *://*.stackexchange.com/*
// @match *://*.stackoverflow.com/*
// @match *://*.superuser.com/*
// @match *://*.serverfault.com/*
// @match *://*.askubuntu.com/*
// @match *://*.stackapps.com/*
// @match *://*.mathoverflow.net/*
// @run-at document-idle
// @grant none
// ==/UserScript==
/* jshint -W097 */
'use strict';
// Change the link
$('a[href="/admin"]').attr("href", "/admin?filter=day");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment