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…
Hvad er Alarm U?
Alarm U er en Chrome-udvidelse udviklet af matt.alpe.dev, og dens hovedfunktion er "This extension allows you to set alarms in chrome. On alarm triggered shows a notification and open an alert, if has configured a…".
Udvidelsesskærmbilleder
Download Alarm U-udvidelses-CRX-fil
Download Alarm U-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | pfilhgkgnhmgoifldaakiddnmhabamjd |
| Officiel URL | https://chromewebstore.google.com/detail/alarm-u/pfilhgkgnhmgoifldaakiddnmhabamjd |
| Beskrivelse | This extension allows you to set alarms in chrome. On alarm triggered shows a notification and open an alert, if has configured a… |
| Filstørrelse | 136 KB |
| Antal Installationer | 43 |
| Nuværende Version | 1.0.0 |
| Senest Opdateret | 2023-03-29 |
| Udgivelsesdato | 2023-03-22 |
| Bedømmelse | 5.00/5 Samlet 4 Bedømmelser |
| Udvikler | matt.alpe.dev |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/matheus-alpe/alarm-u-extension |
| Hjælpeside-URL | https://github.com/matheus-alpe/alarm-u-extension/issues |
| Understøttede Sprog | 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"
}
} | |