set alarm
This extension shows a notification at a set time
Cos'è set alarm?
set alarm è un'estensione di Chrome sviluppata da 77120, e la sua funzione principale è "This extension shows a notification at a set time".
Scarica il file CRX dell'estensione set alarm
Scarica i file di estensione set alarm in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
set the time for a notification. You can also be notified with a sound aswell Informazioni di Base sull'Estensione
| Nome | |
| ID | hkjfacaiaebelbflcbfgbaiejnakildd |
| URL Ufficiale | https://chrome.google.com/webstore/detail/hkjfacaiaebelbflcbfgbaiejnakildd |
| Descrizione | This extension shows a notification at a set time |
| Dimensione del File | 23.05 KB |
| Conteggio Installazioni | 120 |
| Versione Corrente | 1.0.1 |
| Ultimo Aggiornamento | 2017-03-04 |
| Data di Pubblicazione | 2017-03-04 |
| Valutazione | 5.00/5 Totale 1 Valutazioni |
| Sviluppatore | 77120 |
| Tipo di Pagamento | free |
| Lingue Supportate | 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
}
} | |