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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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\/*" ] } ] } |