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
扩展基本信息
名称 | 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\/*" ] } ] } |