set alarm
This extension shows a notification at a set time
Co to jest set alarm?
set alarm to rozszerzenie Chrome opracowane przez 77120, a jego główną funkcją jest „This extension shows a notification at a set time”.
Pobierz plik CRX rozszerzenia set alarm
Pobierz pliki rozszerzeń set alarm 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
set the time for a notification. You can also be notified with a sound aswell
Podstawowe informacje o rozszerzeniu
Nazwa | set alarm |
ID | hkjfacaiaebelbflcbfgbaiejnakildd |
Oficjalny URL | https://chrome.google.com/webstore/detail/hkjfacaiaebelbflcbfgbaiejnakildd |
Opis | This extension shows a notification at a set time |
Rozmiar pliku | 23.05 KB |
Liczba instalacji | 120 |
Aktualna Wersja | 1.0.1 |
Ostatnia Aktualizacja | 2017-03-04 |
Data Publikacji | 2017-03-04 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | 77120 |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "set alarm", "icons": { "128": "bell-128.png" }, "description": "This extension shows a notification at a set time", "author": "Jyro Snoeijen", "homepage_url": "http:\/\/www.datastone.nl", "version": "1.0.1", "browser_action": { "default_icon": "bell-128.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "alarms", "notifications", "storage", "background" ], "background": { "scripts": [ "timer.js" ], "persistent": false }, "options_ui": { "page": "options.html", "chrome_style": true } } |