Alarm U
This extension allows you to set alarms in chrome. On alarm triggered shows a notification and open an alert, if has configured a…
Co to jest Alarm U?
Alarm U to rozszerzenie Chrome opracowane przez matt.alpe.dev, a jego główną funkcją jest „This extension allows you to set alarms in chrome. On alarm triggered shows a notification and open an alert, if has configured a…”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Alarm U
Pobierz pliki rozszerzeń Alarm U 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
This extension allows you to set alarms in chrome. On alarm triggered shows a notification and open an alert, if has configured a URL will open a new tab with the provided link.
Podstawowe informacje o rozszerzeniu
Nazwa | Alarm U |
ID | pfilhgkgnhmgoifldaakiddnmhabamjd |
Oficjalny URL | https://chromewebstore.google.com/detail/alarm-u/pfilhgkgnhmgoifldaakiddnmhabamjd |
Opis | This extension allows you to set alarms in chrome. On alarm triggered shows a notification and open an alert, if has configured a… |
Rozmiar pliku | 136 KB |
Liczba instalacji | 43 |
Aktualna Wersja | 1.0.0 |
Ostatnia Aktualizacja | 2023-03-29 |
Data Publikacji | 2023-03-22 |
Ocena | 5.00/5 Łącznie 4 Oceny |
Deweloper | matt.alpe.dev |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/matheus-alpe/alarm-u-extension |
Adres URL Strony Pomocy | https://github.com/matheus-alpe/alarm-u-extension/issues |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Alarm U", "version": "1.0.0", "host_permissions": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "background": { "service_worker": "service-worker.js" }, "permissions": [ "tabs", "scripting", "storage", "notifications", "alarms" ], "web_accessible_resources": [ { "resources": [ "*.html", "*.svg", "*.js", "*.css", "*.svg" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ] } ], "externally_connectable": { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ] }, "action": [], "icons": { "16": "favicon-16x16.png", "32": "favicon-32x32.png", "48": "favicon-48x48.png", "128": "favicon-128x128.png" } } |