Teams Notification Sound

Add sounds to Teams PWA notifications.

什麼是Teams Notification Sound?

Teams Notification Sound是由simone.gaiarin開發的Chrome擴展程式,該擴展的主要功能是“Add sounds to Teams PWA notifications.”。

擴展截圖

screenshot

下載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 Teams Notification Sound
ID bnmbopkjdbbnbnhfcmgphlnhhjfallcn
官方網址 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\/*"
            ]
        }
    ]
}