Notification Muter
This extension will mute notifications
Notification Muter là gì?
Notification Muter là một tiện ích mở rộng Chrome được phát triển bởi mfreedman, và tính năng chính của nó là "This extension will mute notifications".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Notification Muter
Tải xuống các tệp mở rộng Notification Muter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | nadnegkhgmdkedmcmobengbmacbngpma |
URL Chính Thức | https://chromewebstore.google.com/detail/notification-muter/nadnegkhgmdkedmcmobengbmacbngpma |
Mô tả | This extension will mute notifications |
Kích Thước Tệp | 27.62 KB |
Số Lần Cài Đặt | 176 |
Phiên Bản Hiện Tại | 0.0.3.18 |
Cập Nhật Lần Cuối | 2017-06-07 |
Ngày Phát Hành | 2017-06-07 |
Đánh Giá | 3.50/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | mfreedman |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/mikfreedman/notification-muter |
URL Trang Trợ Giúp | https://github.com/mikfreedman/notification-muter/blob/master/README.md |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |