Teams Notification Sound

Add sounds to Teams PWA notifications.

Qu'est-ce que Teams Notification Sound ?

Teams Notification Sound est une extension Chrome développée par simone.gaiarin, et sa fonction principale est "Add sounds to Teams PWA notifications.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Teams Notification Sound

Téléchargez les fichiers d'extension Teams Notification Sound au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Teams Notification Sound Teams Notification Sound
ID bnmbopkjdbbnbnhfcmgphlnhhjfallcn
URL Officiel https://chromewebstore.google.com/detail/teams-notification-sound/bnmbopkjdbbnbnhfcmgphlnhhjfallcn
Description Add sounds to Teams PWA notifications.
Taille du Fichier 49.36 KB
Nombre d'Installations 963
Version Actuelle 1.0.3
Dernière Mise à Jour 2023-05-30
Date de Publication 2023-01-22
Évaluation 4.55/5 Total 11 Évaluations
Développeur simone.gaiarin
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/simgunz/chrome-extension-teams-notifications
URL de la Page d'Aide https://github.com/simgunz/chrome-extension-teams-notifications/issues
Langues Prises en Charge 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\/*"
            ]
        }
    ]
}