Notification Muter

This extension will mute notifications

Notification Muter란 무엇입니까?

Notification Muter은(는) mfreedman에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension will mute notifications"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This will block notifications and popups for all urls.

It will also temporarily remove javascript alerts for calendar.google.com

When unmuted will stop this extension from managing your notifications & popups.                    

확장 프로그램 기본 정보

이름 Notification Muter Notification Muter
ID nadnegkhgmdkedmcmobengbmacbngpma
공식 URL https://chromewebstore.google.com/detail/notification-muter/nadnegkhgmdkedmcmobengbmacbngpma
설명 This extension will mute notifications
파일 크기 27.62 KB
설치 횟수 176
현재 버전 0.0.3.18
최근 업데이트 2017-06-07
출시 날짜 2017-06-07
평점 3.50/5 총 2 개의 평점
개발자 mfreedman
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/mikfreedman/notification-muter
도움말 페이지 URL https://github.com/mikfreedman/notification-muter/blob/master/README.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "notification-muter",
    "name": "Notification Muter",
    "version": "0.0.3.18",
    "manifest_version": 2,
    "description": "This extension will mute notifications",
    "homepage_url": "http:\/\/github.com\/mikfreedman\/notification-muter",
    "icons": {
        "16": "icons\/bell.png",
        "48": "icons\/bell.png",
        "128": "icons\/bell.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/notificationMuter.js",
            "src\/popupMuter.js",
            "src\/alertMuter.js",
            "src\/clickListener.js",
            "src\/iconListener.js",
            "src\/reinjectListener.js",
            "src\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icons\/bell.png",
        "default_title": "mute\/unmute notifications"
    },
    "permissions": [
        "https:\/\/calendar.google.com\/*",
        "http:\/\/calendar.google.com\/*",
        "contentSettings",
        "storage"
    ],
    "web_accessible_resources": [
        "icons\/no-bell.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/*",
                "http:\/\/calendar.google.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}