Created
September 14, 2020 22:33
-
-
Save happiness801/7181456087bd996e147a6e8a30745fcc to your computer and use it in GitHub Desktop.
Close Mimecast Windows automatically
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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