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
电子邮箱 [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"
            ]
        }
    ]
}