Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save JonathanPorta/792c3596ba159727348f61fabc1242f2 to your computer and use it in GitHub Desktop.
Save JonathanPorta/792c3596ba159727348f61fabc1242f2 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://admin-kube.dashboard.getpantheon.com/sites/a35db090-b90d-43d2-8417-e5f03f10318d
// @grant none
// ==/UserScript==
(function() {
'use strict';
setTimeout(function(){
console.log('i ran');
document.location.reload();
}, 10000);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment