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 |
| 官方網址 | 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"
]
}
} | |