Skip to content

Instantly share code, notes, and snippets.

@coleturner
Created December 30, 2017 02:30
Show Gist options
  • Save coleturner/76eae0f74a21e81cf8507fffe778dc3a to your computer and use it in GitHub Desktop.
Save coleturner/76eae0f74a21e81cf8507fffe778dc3a to your computer and use it in GitHub Desktop.
Block distractions
// ==UserScript==
// @name Distractions
// @version 0.1
// @description redirects to something productive
// @author You
// @include *.reddit.*
// @include *.imgur.*
// @run-at document-start
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.write('');
alert('👋');
window.location.href = 'https://github.com/issues';
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment