Skip to content

Instantly share code, notes, and snippets.

@happiness801
Created September 14, 2020 22:33
Show Gist options
  • Save happiness801/7181456087bd996e147a6e8a30745fcc to your computer and use it in GitHub Desktop.
Save happiness801/7181456087bd996e147a6e8a30745fcc to your computer and use it in GitHub Desktop.
Close Mimecast Windows automatically
// ==UserScript==
// @name Close Mimecast Windows automatically
// @namespace http://onai.net/
// @version 0.1
// @description Close mimecast windows automatically
// @author You
// @match https://us-api.mimecast.com/m/*
// @grant window.close
// ==/UserScript==
(function() {
'use strict';
setTimeout(() => {
window.close()
}, 2500)
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment