Skip to content

Instantly share code, notes, and snippets.

@hazisarashi
Created October 20, 2009 15:11
Show Gist options
  • Save hazisarashi/214314 to your computer and use it in GitHub Desktop.
Save hazisarashi/214314 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Apple store Reloader
// @namespace http://hazisarashi.com/
// @description We'll be Back soon時に5秒ごとに自動更新
// @include http://store.apple.com/*
// ==/UserScript==
(function() {
if ( document.getElementById('header1').innerHTML == '<img src="http://images.apple.com/r/store/backsoon/title_backsoon1.gif" alt="We\'ll be back soon" width="564" height="168" border="0">' ){
setTimeout("location.reload()",5000);
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment