set alarm
This extension shows a notification at a set time
O que é set alarm?
set alarm é uma extensão do Chrome desenvolvida por 77120, e sua principal característica é "This extension shows a notification at a set time".
Baixar o arquivo CRX da Extensão set alarm
Baixe arquivos de extensão set alarm 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
set the time for a notification. You can also be notified with a sound aswell
Informações Básicas da Extensão
Nome | set alarm |
ID | hkjfacaiaebelbflcbfgbaiejnakildd |
URL Oficial | https://chrome.google.com/webstore/detail/hkjfacaiaebelbflcbfgbaiejnakildd |
Descrição | This extension shows a notification at a set time |
Tamanho do Arquivo | 23.05 KB |
Contagem de Instalações | 120 |
Versão Atual | 1.0.1 |
Última Atualização | 2017-03-04 |
Data de Publicação | 2017-03-04 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | 77120 |
Tipo de Pagamento | free |
Idiomas Suportados | 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 } } |