Teams Notification Sound

Add sounds to Teams PWA notifications.

Wat is Teams Notification Sound?

Teams Notification Sound is een Chrome-extensie ontwikkeld door simone.gaiarin, en de belangrijkste functie is "Add sounds to Teams PWA notifications.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Teams Notification Sound

Download Teams Notification Sound-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Teams Notification Sound Teams Notification Sound
ID bnmbopkjdbbnbnhfcmgphlnhhjfallcn
Officiële URL https://chromewebstore.google.com/detail/teams-notification-sound/bnmbopkjdbbnbnhfcmgphlnhhjfallcn
Beschrijving Add sounds to Teams PWA notifications.
Bestandsgrootte 49.36 KB
Aantal Installaties 963
Huidige Versie 1.0.3
Laatst Bijgewerkt 2023-05-30
Publicatiedatum 2023-01-22
Beoordeling 4.55/5 Totaal 11 Beoordelingen
Ontwikkelaar simone.gaiarin
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/simgunz/chrome-extension-teams-notifications
Help Pagina-URL https://github.com/simgunz/chrome-extension-teams-notifications/issues
Ondersteunde Talen 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\/*"
            ]
        }
    ]
}