Notification Muter
This extension will mute notifications
什麼是Notification Muter?
Notification Muter是由mfreedman開發的Chrome擴展程式,該擴展的主要功能是“This extension will mute notifications”。
擴展截圖
下載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. 擴展基本資訊
| 名稱 | |
| ID | nadnegkhgmdkedmcmobengbmacbngpma |
| 官方網址 | 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"
]
}
]
} | |