時報
https://gyazo.com/d3a8645c8e851ffde6af9dddc682b1a8
時報を鳴らすユーザースクリプトです。
ブラウザのウインドウが外れてたりすると鳴らなかったり・・・アラーム的な信頼は無理かもしれません。
code:script.js
// MP3ファイルのURL 時報っぽいチャイムのサウンドデータ
// Audioオブジェクトを作成
var ChimeAudio = new Audio(ChimeMP3Url);
// 時報を鳴らす関数
function playHourlyChime() {
var now = new Date();
var minutes = now.getMinutes();
var seconds = now.getSeconds();
if (minutes === 0 && seconds === 0) { // 毎時 0分 0秒に
ChimeAudio.play();
}
}
// 1秒ごとに時刻をチェック 時報誤差 最大1秒
setInterval(playHourlyChime, 1000);
var ChimeMP3Url = 'https://scrapbox.io/files/6662d46ee77a68001d99c79c.mp3'; ピッ ピッ ピッ ポーン を
if (minutes === 59 && seconds > 55) { // 毎時 59分 56秒 に 鳴らすのもありかな・・・?