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"
]
}
} | |