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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
}
} | |