Created
September 27, 2010 02:55
-
-
Save mirakui/598531 to your computer and use it in GitHub Desktop.
AWS Console Activator
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 AWS Console Activator | |
// @description AWS Console Activator | |
// @match https://console.aws.amazon.com/* | |
// ==/UserScript== | |
(function() { | |
var interval = 1000*60; | |
setInterval(function() {$("#refresh_btn-button").click()}, interval); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment