Hack.Chat Notifications
Adds desktop and sound notifications to hack.chat for mentions, whispers, and invites, warnings, and highlights messages to you.
Hack.Chat Notificationsとは何ですか?
Hack.Chat Notificationsはpinesによって開発されたChromeの拡張機能で、その主な機能は「Adds desktop and sound notifications to hack.chat for mentions, whispers, and invites, warnings, and highlights messages to you.」です。
拡張機能のスクリーンショット
Hack.Chat Notifications拡張機能のCRXファイルをダウンロード
Hack.Chat Notifications拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
拡張機能の基本情報
| 名前 | |
| ID | jbgamigkfmdagfhgijmnhamjplfdnalm |
| 公式URL | https://chromewebstore.google.com/detail/hackchat-notifications/jbgamigkfmdagfhgijmnhamjplfdnalm |
| 説明 | Adds desktop and sound notifications to hack.chat for mentions, whispers, and invites, warnings, and highlights messages to you. |
| ファイルサイズ | 103 KB |
| インストール数 | 52 |
| 現在のバージョン | 1.5 |
| 最終更新日 | 2019-02-20 |
| 公開日 | 2019-02-20 |
| 開発者 | pines |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://hack.chat/?programming |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Hack.Chat Notifications",
"version": "1.5",
"applications": {
"gecko": {
"id": "[email protected]"
}
},
"description": "Adds desktop and sound notifications to hack.chat for mentions, whispers, and invites, warnings, and highlights messages to you.",
"icons": {
"16": "icons\/favicon-16x16.png",
"32": "icons\/favicon-32x32.png",
"48": "icons\/favicon-48x48.png",
"64": "icons\/favicon-64x64.png",
"96": "icons\/favicon-96x96.png",
"128": "icons\/favicon-128x128.png",
"192": "icons\/favicon-192x192.png"
},
"permissions": [
"notifications"
],
"content_scripts": [
{
"matches": [
"https:\/\/hack.chat\/*",
"http:\/\/hack.chat\/*"
],
"js": [
"content_scripts\/injectNotifier.js"
]
}
],
"browser_action": {
"browser_style": true,
"default_icon": {
"16": "icons\/favicon-16x16.png",
"32": "icons\/favicon-32x32.png",
"48": "icons\/favicon-48x48.png",
"64": "icons\/favicon-64x64.png",
"96": "icons\/favicon-96x96.png",
"128": "icons\/favicon-128x128.png",
"192": "icons\/favicon-192x192.png"
},
"default_title": "Hack.Chat Notifications",
"default_popup": "popup\/settings.html"
},
"web_accessible_resources": [
"content_scripts\/injectNotifier.js",
"content_scripts\/notify.js",
"assets\/notify.ogg"
]
} | |