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…
Was ist Alarm U?
Alarm U ist eine Chrome-Erweiterung, die von matt.alpe.dev entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to set alarms in chrome. On alarm triggered shows a notification and open an alert, if has configured a…".
Erweiterungsscreenshots
Alarm U-Erweiterungs-CRX-Datei herunterladen
Laden Sie Alarm U-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Alarm U |
ID | pfilhgkgnhmgoifldaakiddnmhabamjd |
Offizielle URL | https://chromewebstore.google.com/detail/alarm-u/pfilhgkgnhmgoifldaakiddnmhabamjd |
Beschreibung | This extension allows you to set alarms in chrome. On alarm triggered shows a notification and open an alert, if has configured a… |
Dateigröße | 136 KB |
Installationsanzahl | 43 |
Aktuelle Version | 1.0.0 |
Letztes Update | 2023-03-29 |
Veröffentlichungsdatum | 2023-03-22 |
Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
Entwickler | matt.alpe.dev |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/matheus-alpe/alarm-u-extension |
Hilfeseite URL | https://github.com/matheus-alpe/alarm-u-extension/issues |
Unterstützte Sprachen | 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" } } |