Created
January 26, 2022 13:59
-
-
Save lbenedix/244f6f7bc1bdf9b98b17eccdc9b06b5b to your computer and use it in GitHub Desktop.
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 CloudFormation Reloader | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description reload all the things | |
// @author You | |
// @match https://*.console.aws.amazon.com/cloudformation/* | |
// @icon https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/240/openmoji/292/recycling-symbol_267b-fe0f.png | |
// @grant none | |
// ==/UserScript== | |
setInterval(function(){ | |
document.querySelector('.awsui-table-header > span:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > awsui-button:nth-child(1) > button:nth-child(1)').click(); | |
},5000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment