Teams Notification Sound
Add sounds to Teams PWA notifications.
Teams Notification Sound là gì?
Teams Notification Sound là một tiện ích mở rộng Chrome được phát triển bởi simone.gaiarin, và tính năng chính của nó là "Add sounds to Teams PWA notifications.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Teams Notification Sound
Tải xuống các tệp mở rộng Teams Notification Sound dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Teams Notification Sound |
ID | bnmbopkjdbbnbnhfcmgphlnhhjfallcn |
URL Chính Thức | https://chromewebstore.google.com/detail/teams-notification-sound/bnmbopkjdbbnbnhfcmgphlnhhjfallcn |
Mô tả | Add sounds to Teams PWA notifications. |
Kích Thước Tệp | 49.36 KB |
Số Lần Cài Đặt | 963 |
Phiên Bản Hiện Tại | 1.0.3 |
Cập Nhật Lần Cuối | 2023-05-30 |
Ngày Phát Hành | 2023-01-22 |
Đánh Giá | 4.55/5 Tổng số 11 Đánh Giá |
Nhà Phát Triển | simone.gaiarin |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/simgunz/chrome-extension-teams-notifications |
URL Trang Trợ Giúp | https://github.com/simgunz/chrome-extension-teams-notifications/issues |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |