Teams Notification Sound

Add sounds to Teams PWA notifications.

Teams Notification Sound란 무엇입니까?

Teams Notification Sound은(는) simone.gaiarin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add sounds to Teams PWA notifications."입니다.

확장 프로그램 스크린샷

screenshot

Teams Notification Sound 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
            ]
        }
    ]
}