diff --git a/index.html b/index.html
index 0335d19f9..bbca40e55 100644
--- a/index.html
+++ b/index.html
@@ -90,7 +90,9 @@ function imagePreview() {
}
function storeInstall(e) {
if (!e.shiftKey && !e.altKey && !e.ctrlKey && !e.metaKey && e.button === 0) {
- chrome.webstore.install();
+ chrome.webstore.install(this.href, function(){}, function(){
+ location.href = this.href;
+ });
e.preventDefault();
}
}