Skip to content

Instantly share code, notes, and snippets.

@mimonelu
Last active November 14, 2016 15:30
Show Gist options
  • Save mimonelu/41991d639ec364151aa855c6edc1da7b to your computer and use it in GitHub Desktop.
Save mimonelu/41991d639ec364151aa855c6edc1da7b to your computer and use it in GitHub Desktop.
1時間ごとに確認ポップアップを表示するブックマークレット。OKで継続、キャンセルで中止。
javascript: !this.$t$ && ($t$ = setInterval(function () { !confirm((new Date).toLocaleString()) && (clearInterval($t$), $t$ = null); }, 1000 * 60 * 60)); void 0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment