Disable Time Travel Mode

This commit is contained in:
Glorfindel 2019-03-31 12:58:46 +02:00
parent 0cfa953431
commit ca097c2b90
1 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,28 @@
// ==UserScript==
// @name Disable Stack Exchange Time Travel Mode
// @namespace https://github.com/Glorfindel83/
// @description Disables Time Travel Mode (April Fools 2019) on all Stack Exchange sites
// @author Glorfindel
// @updateURL https://raw.githubusercontent.com/Glorfindel83/SE-Userscripts/master/disable-time-travel-mode/disable-time-travel-mode.user.js
// @downloadURL https://raw.githubusercontent.com/Glorfindel83/SE-Userscripts/master/disable-time-travel-mode/disable-time-travel-mode.user.js
// @match *://*.stackexchange.com/*
// @match *://*.stackoverflow.com/*
// @match *://*.superuser.com/*
// @match *://*.serverfault.com/*
// @match *://*.askubuntu.com/*
// @match *://*.stackapps.com/*
// @exclude *://api.stackexchange.com/*
// @exclude *://blog.*.com/*
// @exclude *://chat.*.com/*
// @exclude *://data.stackexchange.com/*
// @exclude *://elections.stackexchange.com/*
// @exclude *://openid.stackexchange.com/*
// @exclude *://stackexchange.com/*
// @grant none
// @version 0.1
// ==/UserScript==
(function () {
"use strict";
$.cookie("tm2019", "1", { expires: 2, path: '/' });
})()