Redirects discord to google.com, because I'd rather not, right now- despite having made it a habit.
// ==UserScript==
// @name No discord for zoey - this is enough internet for me today.
// @namespace https://tampermonkey.net/
// @version 1.0
// @description Redirects discord to google.com, because I'd rather not, right now- despite having made it a habit.
// @author Novimatrem
// @match https://discord.com/
// @icon https://www.google.com/s2/favicons?sz=64&domain=discord.com
// @grant none
// @match *://*discord.com/*
// ==/UserScript==
(function() {
'use strict';
window.location = "https://www.google.com"
})();