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…
O que é Alarm U?
Alarm U é uma extensão do Chrome desenvolvida por matt.alpe.dev, e sua principal característica é "This extension allows you to set alarms in chrome. On alarm triggered shows a notification and open an alert, if has configured a…".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Alarm U
Baixe arquivos de extensão Alarm U no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Alarm U |
ID | pfilhgkgnhmgoifldaakiddnmhabamjd |
URL Oficial | https://chromewebstore.google.com/detail/alarm-u/pfilhgkgnhmgoifldaakiddnmhabamjd |
Descrição | This extension allows you to set alarms in chrome. On alarm triggered shows a notification and open an alert, if has configured a… |
Tamanho do Arquivo | 136 KB |
Contagem de Instalações | 43 |
Versão Atual | 1.0.0 |
Última Atualização | 2023-03-29 |
Data de Publicação | 2023-03-22 |
Classificação | 5.00/5 Total de 4 Avaliações |
Desenvolvedor | matt.alpe.dev |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/matheus-alpe/alarm-u-extension |
URL da Página de Ajuda | https://github.com/matheus-alpe/alarm-u-extension/issues |
Idiomas Suportados | 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" } } |