Skip to content

Instantly share code, notes, and snippets.

@lbenedix
Created January 26, 2022 13:59
Show Gist options
  • Save lbenedix/244f6f7bc1bdf9b98b17eccdc9b06b5b to your computer and use it in GitHub Desktop.
Save lbenedix/244f6f7bc1bdf9b98b17eccdc9b06b5b to your computer and use it in GitHub Desktop.
// ==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