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…
什麼是Alarm U?
Alarm U是由matt.alpe.dev開發的Chrome擴展程式,該擴展的主要功能是“This extension allows you to set alarms in chrome. On alarm triggered shows a notification and open an alert, if has configured a…”。
擴展截圖
下載Alarm U擴展crx文件
下載Alarm U擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Alarm U |
ID | pfilhgkgnhmgoifldaakiddnmhabamjd |
官方網址 | https://chromewebstore.google.com/detail/alarm-u/pfilhgkgnhmgoifldaakiddnmhabamjd |
簡介 | This extension allows you to set alarms in chrome. On alarm triggered shows a notification and open an alert, if has configured a… |
檔案大小 | 136 KB |
安裝次數 | 43 |
目前版本 | 1.0.0 |
更新時間 | 2023-03-29 |
上架時間 | 2023-03-22 |
評分 | 5.00/5 共 4 次評分 |
開發者 | matt.alpe.dev |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/matheus-alpe/alarm-u-extension |
說明頁面URL | https://github.com/matheus-alpe/alarm-u-extension/issues |
支援的語言 | 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" } } |