Lightweight Alarm clock

Alarm clock, countdown, interval timer

Hvad er Lightweight Alarm clock?

Lightweight Alarm clock er en Chrome-udvidelse udviklet af chikitonik, og dens hovedfunktion er "Alarm clock, countdown, interval timer".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot

Download Lightweight Alarm clock-udvidelses-CRX-fil

Download Lightweight Alarm clock-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        Lightweight Alarm clock, countdown, interval timer with sound and notifications.

Easy to set up and simple to use                    

Grundlæggende oplysninger om udvidelsen

Navn Lightweight Alarm clock Lightweight Alarm clock
ID dipbelnbiifccoaomakbonpknchcdfpl
Officiel URL https://chromewebstore.google.com/detail/lightweight-alarm-clock/dipbelnbiifccoaomakbonpknchcdfpl
Beskrivelse Alarm clock, countdown, interval timer
Filstørrelse 2.57 MB
Antal Installationer 298
Nuværende Version 1.0.0
Senest Opdateret 2023-01-26
Udgivelsesdato 2022-11-22
Bedømmelse 5.00/5 Samlet 4 Bedømmelser
Udvikler chikitonik
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
            ]
        }
    ]
}