Notification Muter

This extension will mute notifications

Notification Muterとは何ですか?

Notification Muterはmfreedmanによって開発されたChromeの拡張機能で、その主な機能は「This extension will mute notifications」です。

拡張機能のスクリーンショット

screenshot

Notification Muter拡張機能のCRXファイルをダウンロード

Notification Muter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
            ]
        }
    ]
}