about-blank / index.html
GPTfree api
Update index.html
77e2ea7 verified
raw
history blame
641 Bytes
<script>
document.addEventListener('DOMContentLoaded', function() {
// 履歴があるか確認
if (window.history.length > 1) {
// 履歴がある場合はGoogleにリダイレクト
location.replace('https://google.com');
} else {
// 履歴がない場合はwindow.closeを試行
if (window.close) {
window.close();
} else {
// 万一のためリダイレクト
location.replace('https://google.com');
}
}
});
</script>