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…
Что такое Alarm U?
Alarm U - это расширение Chrome, разработанное matt.alpe.dev, и его основная функция - "This extension allows you to set alarms in chrome. On alarm triggered shows a notification and open an alert, if has configured a…".
Снимки экрана расширения
Скачать файл CRX расширения Alarm U
Скачайте файлы расширений Alarm U в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | Alarm U |
ID | pfilhgkgnhmgoifldaakiddnmhabamjd |
Официальный URL | https://chromewebstore.google.com/detail/alarm-u/pfilhgkgnhmgoifldaakiddnmhabamjd |
Описание | This extension allows you to set alarms in chrome. On alarm triggered shows a notification and open an alert, if has configured a… |
Размер файла | 136 KB |
Количество установок | 43 |
Текущая Версия | 1.0.0 |
Последнее Обновление | 2023-03-29 |
Дата публикации | 2023-03-22 |
Рейтинг | 5.00/5 Всего 4 оценок |
Разработчик | matt.alpe.dev |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/matheus-alpe/alarm-u-extension |
URL страницы помощи | https://github.com/matheus-alpe/alarm-u-extension/issues |
Поддерживаемые языки | 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" } } |