Alarm, Timer and Stopwatch
A powerful alarm extension that supports multiple timers and stopwatches with five to ten-minute snooze.
Alarm, Timer and Stopwatch란 무엇입니까?
Alarm, Timer and Stopwatch은(는) brian.girko에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A powerful alarm extension that supports multiple timers and stopwatches with five to ten-minute snooze."입니다.
확장 프로그램 스크린샷
Alarm, Timer and Stopwatch 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
All in one extension to manage your schedules. You can define multiple alarms, use the stopwatch with as many "lap"s as required, or simply use the timer with pause and resume support. This extension uses the built-in API to set alarms hence the extension works even if the UI is hidden or your browser gets restarted. This extension offers alarm sound snoozing which snoozes the alarm sound 3 times with a 5-minute delay. The extension displays a high-priority desktop notification when either an alarm or a timer is fired, also it plays two different sounds to get the user-attention. As of version 0.1.3, the user can snooze each notification with a 5 to 10-minute delay. As of version 0.1.4, you can export and import your preferences
확장 프로그램 기본 정보
이름 | Alarm, Timer and Stopwatch |
ID | jgpddkifkljmnfahlaofmjdeempjbpke |
공식 URL | https://chromewebstore.google.com/detail/alarm-timer-and-stopwatch/jgpddkifkljmnfahlaofmjdeempjbpke |
설명 | A powerful alarm extension that supports multiple timers and stopwatches with five to ten-minute snooze. |
파일 크기 | 731 KB |
설치 횟수 | 52,786 |
현재 버전 | 0.2.7 |
최근 업데이트 | 2022-12-14 |
출시 날짜 | 2020-04-15 |
평점 | 4.36/5 총 66 개의 평점 |
개발자 | brian.girko |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://webextension.org/listing/alarm.html |
도움말 페이지 URL | https://webextension.org/listing/alarm.html |
지원되는 언어 | de,en,fr,nl,es,it,pl,pt-BR,pt-PT,ru,zh-CN,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "0.2.7", "name": "Alarm, Timer and Stopwatch", "description": "__MSG_description__", "default_locale": "en", "permissions": [ "storage", "alarms", "idle", "contextMenus" ], "offline_enabled": true, "homepage_url": "https:\/\/webextension.org\/listing\/alarm.html", "background": { "service_worker": "worker.js" }, "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png", "256": "data\/icons\/256.png", "512": "data\/icons\/512.png" }, "action": { "default_popup": "data\/popup\/index.html" }, "options_ui": { "page": "data\/options\/index.html" }, "commands": { "_execute_action": [], "open-interface": { "description": "Open the interface in a window" } } } |