-
-
Save danbeam/99e7c5d4e8182ff3762e to your computer and use it in GitHub Desktop.
This file contains 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 Tree Reloader | |
// @namespace tree-reloader | |
// @description Reloads the tree | |
// @match http://build.chromium.org/* | |
// @match https://build.chromium.org/* | |
// @match http://chromegw.corp.google.com/* | |
// @match https://chromegw.corp.google.com/* | |
// @match http://chromium-build.appspot.com/* | |
// @match https://chromium-build.appspot.com/* | |
// @version 0.1 | |
// ==/UserScript== | |
(function(window) { | |
if (/[&?]reload=(\d+)/.test(window.location.search)) { | |
window.setTimeout(function() { | |
window.location.reload(); | |
}, window.parseInt(RegExp.$1, 10) * 1000); | |
} | |
}(unsafeWindow)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment