Teams Notification Sound
Add sounds to Teams PWA notifications.
Teams Notification Soundคืออะไร?
Teams Notification Sound เป็นส่วนขยายของ Chrome ที่พัฒนาโดย simone.gaiarin และคุณลักษณะหลักของมันคือ "Add sounds to Teams PWA notifications."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Teams Notification Sound
ดาวน์โหลดไฟล์ส่วนขยาย 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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Teams Notification Sound |
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 |
อีเมล | [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\/*" ] } ] } |