Skip to content

Instantly share code, notes, and snippets.

@miglen
Created August 16, 2018 09:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save miglen/490c328e49cf711cf56211af6b45e498 to your computer and use it in GitHub Desktop.
Save miglen/490c328e49cf711cf56211af6b45e498 to your computer and use it in GitHub Desktop.
Greasemonkey (Tampermonkey) script to redirect Inbox.Google.com to Gmail.com
// ==UserScript==
// @name Gmail Redirect
// @namespace http://inbox.google.com/
// @version 0.1
// @description Redirect Inbox.Google.com to Gmail.com
// @author github@miglen.com
// @match https://inbox.google.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
window.location.href = "https://mail.google.com/mail/u/0/#inbox";
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment