Skip to content

Instantly share code, notes, and snippets.

@JuanPotato
Created February 16, 2016 20:54
Show Gist options
  • Save JuanPotato/e2cd4ff44bb2622b7526 to your computer and use it in GitHub Desktop.
Save JuanPotato/e2cd4ff44bb2622b7526 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name No reddit on weekdays
// @version 0.1
// @description Redirects you to xkcd.com/no
// @author Juan Potato
// @match *://*.reddit.com/*
// ==/UserScript==
if(0 < new Date().getDay() < 6)
window.location.href = "http://xkcd.com/no/";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment