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…
Cos'è Alarm U?
Alarm U è un'estensione di Chrome sviluppata da matt.alpe.dev, e la sua funzione principale è "This extension allows you to set alarms in chrome. On alarm triggered shows a notification and open an alert, if has configured a…".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Alarm U
Scarica i file di estensione Alarm U 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
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | pfilhgkgnhmgoifldaakiddnmhabamjd |
| URL Ufficiale | https://chromewebstore.google.com/detail/alarm-u/pfilhgkgnhmgoifldaakiddnmhabamjd |
| Descrizione | This extension allows you to set alarms in chrome. On alarm triggered shows a notification and open an alert, if has configured a… |
| Dimensione del File | 136 KB |
| Conteggio Installazioni | 43 |
| Versione Corrente | 1.0.0 |
| Ultimo Aggiornamento | 2023-03-29 |
| Data di Pubblicazione | 2023-03-22 |
| Valutazione | 5.00/5 Totale 4 Valutazioni |
| Sviluppatore | matt.alpe.dev |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/matheus-alpe/alarm-u-extension |
| URL della Pagina di Aiuto | https://github.com/matheus-alpe/alarm-u-extension/issues |
| Lingue Supportate | 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"
}
} | |