Teams Notification Sound
Add sounds to Teams PWA notifications.
Vad är Teams Notification Sound?
Teams Notification Sound är en Chrome-tillägg utvecklad av simone.gaiarin, och dess huvudfunktion är "Add sounds to Teams PWA notifications.".
Tilläggsskärmbilder
Ladda ner Teams Notification Sound-förlängningens CRX-fil
Ladda ner Teams Notification Sound-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
                        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                     Grundläggande Information om Tillägg
| Namn |   |  
| ID | bnmbopkjdbbnbnhfcmgphlnhhjfallcn | 
| Officiell webbadress | https://chromewebstore.google.com/detail/teams-notification-sound/bnmbopkjdbbnbnhfcmgphlnhhjfallcn | 
| Beskrivning | Add sounds to Teams PWA notifications. | 
| Filstorlek | 49.36 KB | 
| Antal Installationer | 963 | 
| Aktuell Version | 1.0.3 | 
| Senast Uppdaterad | 2023-05-30 | 
| Publiceringsdatum | 2023-01-22 | 
| Betyg | 4.55/5 Totalt 11 Betyg | 
| Utvecklare | simone.gaiarin | 
| E-post | [email protected] | 
| Betalningssätt | free | 
| Tilläggswebbplats | https://github.com/simgunz/chrome-extension-teams-notifications | 
| Hjälpsida URL | https://github.com/simgunz/chrome-extension-teams-notifications/issues | 
| Stödda Språk | 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\/*"
            ]
        }
    ]
}  |  |