Teams Notification Sound

Add sounds to Teams PWA notifications.

What is Teams Notification Sound?

Teams Notification Sound is a Chrome extension developed by simone.gaiarin, and its main feature is "Add sounds to Teams PWA notifications.".

Extension Screenshots

screenshot

Download Teams Notification Sound Extension CRX File

Download Teams Notification Sound extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Teams Notification Sound Teams Notification Sound
ID bnmbopkjdbbnbnhfcmgphlnhhjfallcn
Official URL https://chromewebstore.google.com/detail/teams-notification-sound/bnmbopkjdbbnbnhfcmgphlnhhjfallcn
Description Add sounds to Teams PWA notifications.
File Size 49.36 KB
Installation Count 963
Current Version 1.0.3
Last Updated 2023-05-30
Publish Date 2023-01-22
Rating 4.55/5 Total 11 Ratings
Developer simone.gaiarin
Email [email protected]
Payment Type free
Extension Website https://github.com/simgunz/chrome-extension-teams-notifications
Help Page URL https://github.com/simgunz/chrome-extension-teams-notifications/issues
Supported Languages 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\/*"
            ]
        }
    ]
}