如何在 chrome 扩展中设置特定歌曲的闹钟?
how to set a particular song for alarm in chrome extension?
我正在开发任务提醒类型 chrome extension.For 我想从硬盘设置一首将在闹钟时间播放的歌曲 over.Please 解释如何编码。 [抱歉英语不好]
提前致谢。
如果您的歌曲在您的扩展文件夹中:
var mySong = new Audio("audio.mp3");
mySong.play();
假设您正在创建通知,您可以在回调函数中像这样播放这首歌:
var myNotification = {
type: "basic",
title: "Hello!",
message: "This is a notification with an audio"
};
chrome.notifications.create("myNotificationID", myNotification, function() {
var mySong = new Audio("audio.mp3");
mySong.play()
})
我正在开发任务提醒类型 chrome extension.For 我想从硬盘设置一首将在闹钟时间播放的歌曲 over.Please 解释如何编码。 [抱歉英语不好]
提前致谢。
如果您的歌曲在您的扩展文件夹中:
var mySong = new Audio("audio.mp3");
mySong.play();
假设您正在创建通知,您可以在回调函数中像这样播放这首歌:
var myNotification = {
type: "basic",
title: "Hello!",
message: "This is a notification with an audio"
};
chrome.notifications.create("myNotificationID", myNotification, function() {
var mySong = new Audio("audio.mp3");
mySong.play()
})