Teams Notification Sound
Add sounds to Teams PWA notifications.
Teams Notification Soundとは何ですか?
Teams Notification Soundはsimone.gaiarinによって開発されたChromeの拡張機能で、その主な機能は「Add sounds to Teams PWA notifications.」です。
拡張機能のスクリーンショット
Teams Notification Sound拡張機能のCRXファイルをダウンロード
Teams Notification Sound拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension plays a sound each time a desktop notification is displayed.
It is particularly intended for linux users that need to transition to the PWA once the desktop app will be dismissed.
Attributions:
Volume icons created by Freepik - Flaticon
https://www.flaticon.com/free-icons/volume 拡張機能の基本情報
| 名前 | |
| ID | bnmbopkjdbbnbnhfcmgphlnhhjfallcn |
| 公式URL | https://chromewebstore.google.com/detail/teams-notification-sound/bnmbopkjdbbnbnhfcmgphlnhhjfallcn |
| 説明 | Add sounds to Teams PWA notifications. |
| ファイルサイズ | 49.36 KB |
| インストール数 | 963 |
| 現在のバージョン | 1.0.3 |
| 最終更新日 | 2023-05-30 |
| 公開日 | 2023-01-22 |
| 評価 | 4.55/5 合計 11 レビュー |
| 開発者 | simone.gaiarin |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/simgunz/chrome-extension-teams-notifications |
| ヘルプページのURL | https://github.com/simgunz/chrome-extension-teams-notifications/issues |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Teams Notification Sound",
"description": "Add sounds to Teams PWA notifications.",
"version": "1.0.3",
"author": "Simone Gaiarin",
"icons": {
"128": "icons\/icon.png"
},
"content_scripts": [
{
"js": [
"scripts\/default-options.js",
"scripts\/content.js"
],
"matches": [
"https:\/\/teams.microsoft.com\/*",
"http:\/\/localhost\/*"
]
}
],
"permissions": [
"storage"
],
"options_page": "options\/options.html",
"web_accessible_resources": [
{
"resources": [
"scripts\/teams-notification.js",
"sounds\/teams-notification.mp3"
],
"matches": [
"https:\/\/teams.microsoft.com\/*"
]
}
]
} | |