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 |
官方URL | 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" } } |