Lightweight Alarm clock

Alarm clock, countdown, interval timer

Co to jest Lightweight Alarm clock?

Lightweight Alarm clock to rozszerzenie Chrome opracowane przez chikitonik, a jego główną funkcją jest „Alarm clock, countdown, interval timer”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Lightweight Alarm clock

Pobierz pliki rozszerzeń Lightweight Alarm clock w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Easy to set up and simple to use                    

Podstawowe informacje o rozszerzeniu

Nazwa Lightweight Alarm clock Lightweight Alarm clock
ID dipbelnbiifccoaomakbonpknchcdfpl
Oficjalny URL https://chromewebstore.google.com/detail/lightweight-alarm-clock/dipbelnbiifccoaomakbonpknchcdfpl
Opis Alarm clock, countdown, interval timer
Rozmiar pliku 2.57 MB
Liczba instalacji 298
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2023-01-26
Data Publikacji 2022-11-22
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper chikitonik
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}