Mute Notifications
Disable all desktop notifications with one click.
什么是Mute Notifications?
Mute Notifications是由Ondřej Cífka开发的Chrome扩展程序,该扩展的主要功能是“Disable all desktop notifications with one click.”。
扩展截图
下载Mute Notifications扩展crx文件
下载Mute Notifications扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension adds a button to Chrome that turns off desktop notifications for all web pages. When the button is clicked again, the original notification settings are restored. 扩展基本信息
| 名称 | |
| ID | bmjdeaihnngnnnaldgakphcaanioohgn |
| 官方URL | https://chromewebstore.google.com/detail/mute-notifications/bmjdeaihnngnnnaldgakphcaanioohgn |
| 简介 | Disable all desktop notifications with one click. |
| 文件大小 | 17.44 KB |
| 安装次数 | 5,077 |
| 当前版本 | 0.3 |
| 更新时间 | 2019-12-20 |
| 上架时间 | 2019-12-20 |
| 评分 | 4.47/5 共19次评分 |
| 开发者 | Ondřej Cífka |
| 付费类型 | free |
| 扩展官网 | https://github.com/cifkao/chrome-mute-notifications |
| 帮助页面URL | https://github.com/cifkao/chrome-mute-notifications |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Mute Notifications",
"description": "Disable all desktop notifications with one click.",
"version": "0.3",
"icons": {
"128": "logo-128.png",
"48": "logo-48.png"
},
"permissions": [
"contentSettings",
"storage"
],
"browser_action": {
"default_icon": {
"19": "icon-on-19.png",
"38": "icon-on-38.png"
}
},
"background": {
"scripts": [
"background.js"
]
}
} | |