/*
* @title window.confirmを使ったシンプルスクリプト
* @description window.comfirmの決定ボタンを押すとそのサイトのトップに戻ります。
* @include http://*
* @license MIT License
* @require
*/
if (window.confirm("現在いるサイトのトップに戻りますか?")) {
location.href = "http://" + document.domain + "/";
}