Lightweight Alarm clock
Alarm clock, countdown, interval timer
What is Lightweight Alarm clock?
Lightweight Alarm clock is a Chrome extension developed by chikitonik, and its main feature is "Alarm clock, countdown, interval timer".
Extension Screenshots
Download Lightweight Alarm clock Extension CRX File
Download Lightweight Alarm clock extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Lightweight Alarm clock, countdown, interval timer with sound and notifications. Easy to set up and simple to use
Extension Basic Information
Name | Lightweight Alarm clock |
ID | dipbelnbiifccoaomakbonpknchcdfpl |
Official URL | https://chromewebstore.google.com/detail/lightweight-alarm-clock/dipbelnbiifccoaomakbonpknchcdfpl |
Description | Alarm clock, countdown, interval timer |
File Size | 2.57 MB |
Installation Count | 298 |
Current Version | 1.0.0 |
Last Updated | 2023-01-26 |
Publish Date | 2022-11-22 |
Rating | 5.00/5 Total 4 Ratings |
Developer | chikitonik |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Lightweight Alarm clock ", "version": "1.0.0", "description": "Alarm clock, countdown, interval timer", "manifest_version": 3, "author": "Roman", "permissions": [ "alarms", "notifications" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "index.html", "default_icon": "icon.png", "default_title": "Alarm clock" }, "content_scripts": [ { "matches": [ "*:\/\/*.index.html\/*" ], "js": [ "background.js" ] } ] } |