Teams Notification Sound

Add sounds to Teams PWA notifications.

O que é Teams Notification Sound?

Teams Notification Sound é uma extensão do Chrome desenvolvida por simone.gaiarin, e sua principal característica é "Add sounds to Teams PWA notifications.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Teams Notification Sound

Baixe arquivos de extensão Teams Notification Sound no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Teams Notification Sound Teams Notification Sound
ID bnmbopkjdbbnbnhfcmgphlnhhjfallcn
URL Oficial https://chromewebstore.google.com/detail/teams-notification-sound/bnmbopkjdbbnbnhfcmgphlnhhjfallcn
Descrição Add sounds to Teams PWA notifications.
Tamanho do Arquivo 49.36 KB
Contagem de Instalações 963
Versão Atual 1.0.3
Última Atualização 2023-05-30
Data de Publicação 2023-01-22
Classificação 4.55/5 Total de 11 Avaliações
Desenvolvedor simone.gaiarin
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/simgunz/chrome-extension-teams-notifications
URL da Página de Ajuda https://github.com/simgunz/chrome-extension-teams-notifications/issues
Idiomas Suportados 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\/*"
            ]
        }
    ]
}