Teams Notification Sound

Add sounds to Teams PWA notifications.

Apa itu Teams Notification Sound?

Teams Notification Sound adalah ekstensi Chrome yang dikembangkan oleh simone.gaiarin, dan fitur utamanya adalah "Add sounds to Teams PWA notifications.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Teams Notification Sound

Unduh file ekstensi Teams Notification Sound dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Teams Notification Sound Teams Notification Sound
ID bnmbopkjdbbnbnhfcmgphlnhhjfallcn
URL Resmi https://chromewebstore.google.com/detail/teams-notification-sound/bnmbopkjdbbnbnhfcmgphlnhhjfallcn
Deskripsi Add sounds to Teams PWA notifications.
Ukuran File 49.36 KB
Jumlah Instalasi 963
Versi Saat Ini 1.0.3
Terakhir Diperbarui 2023-05-30
Tanggal Publikasi 2023-01-22
Penilaian 4.55/5 Total 11 Penilaian
Pengembang simone.gaiarin
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/simgunz/chrome-extension-teams-notifications
URL Halaman Bantuan https://github.com/simgunz/chrome-extension-teams-notifications/issues
Bahasa yang Didukung 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\/*"
            ]
        }
    ]
}