Teams Notification Sound

Add sounds to Teams PWA notifications.

Τι είναι το Teams Notification Sound;

Το Teams Notification Sound είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον simone.gaiarin, και η κύρια λειτουργία του είναι "Add sounds to Teams PWA notifications.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Teams Notification Sound

Λήψη αρχείων επέκτασης Teams Notification Sound σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Teams Notification Sound Teams Notification Sound
ID bnmbopkjdbbnbnhfcmgphlnhhjfallcn
Επίσημο URL https://chromewebstore.google.com/detail/teams-notification-sound/bnmbopkjdbbnbnhfcmgphlnhhjfallcn
Περιγραφή Add sounds to Teams PWA notifications.
Μέγεθος Αρχείου 49.36 KB
Αριθμός Εγκαταστάσεων 963
Τρέχουσα Έκδοση 1.0.3
Τελευταία Ενημέρωση 2023-05-30
Ημερομηνία Δημοσίευσης 2023-01-22
Αξιολόγηση 4.55/5 Συνολικά 11 Αξιολογήσεις
Προγραμματιστής simone.gaiarin
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/simgunz/chrome-extension-teams-notifications
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/simgunz/chrome-extension-teams-notifications/issues
Υποστηριζόμενες Γλώσσες 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\/*"
            ]
        }
    ]
}