확장 프로그램을 사용하여 사용자의 작업 표시줄에 메시지 게시
Notifications API.
먼저 manifest.json에서 "notifications"
권한을 선언합니다.
{
"name": "Drink Water Event Popup",
...
"permissions": [
"notifications",
],
...
}
권한이 선언되면 다음을 호출하여 알림을 표시합니다.
notifications.create()
다음 예는 물 마시기 이벤트 팝업에서 가져온 것입니다.
샘플입니다. 알람을 사용하여 물 한 잔을 마시라는 알림을 설정합니다. 이 코드
경보가 트리거되는 것을 확인할 수 있습니다. 이전 링크를 따라가면
설정되어 있는지 확인합니다
chrome.alarms.onAlarm.addListener(() => {
chrome.action.setBadgeText({ text: '' });
chrome.notifications.create({
type: 'basic',
iconUrl: 'stay_hydrated.png',
title: 'Time to Hydrate',
message: "Everyday I'm Guzzlin'!",
buttons: [{ title: 'Keep it Flowing.' }],
priority: 0
});
});
이 코드는 다음과 같이 macOS에 알림을 만듭니다.
<ph type="x-smartling-placeholder">