Skip to content

Instantly share code, notes, and snippets.

@gparyani
Last active March 31, 2019 11:18
Show Gist options
  • Save gparyani/b34742d0b62c21ee19b5d6e5f3eb7b67 to your computer and use it in GitHub Desktop.
Save gparyani/b34742d0b62c21ee19b5d6e5f3eb7b67 to your computer and use it in GitHub Desktop.
Un-Time Travel: Disable Time Travel on all Stack Exchange sites
/** @preserve
// ==UserScript==
// @name Un-time Travel
// @namespace gparyani
// @version 1.0.1
// @description Disable Time Travel Mode (2019 April Fool's Day Stack Exchange feature) on all network sites
// @homepage https://gist.github.com/gparyani/b34742d0b62c21ee19b5d6e5f3eb7b67
// @grant none
// @run-at document-start
// @include /^https?:\/\/(.*\.)?stackoverflow\.com/.*$/
// @include /^https?:\/\/(.*\.)?serverfault\.com/.*$/
// @include /^https?:\/\/(.*\.)?superuser\.com/.*$/
// @include /^https?:\/\/(.*\.)?stackexchange\.com/.*$/
// @include /^https?:\/\/(.*\.)?askubuntu\.com/.*$/
// @include /^https?:\/\/(.*\.)?mathoverflow\.net/.*$/
// @include /^https?:\/\/discuss\.area51\.stackexchange\.com/.*$/
// @include /^https?:\/\/stackapps\.com/.*$/
// @exclude *://chat.stackexchange.com/*
// @exclude *://chat.stackoverflow.com/*
// @exclude *://chat.meta.stackexchange.com/*
// ==/UserScript==
*/
$.cookie("tm2019", "1", { expires: 2, path: '/' });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment