Meet Chat Notifications
Meet Chat Notifications
Meet Chat Notificationsとは何ですか?
Meet Chat NotificationsはExpressTechによって開発されたChromeの拡張機能で、その主な機能は「Meet Chat Notifications」です。
拡張機能のスクリーンショット
Meet Chat Notifications拡張機能のCRXファイルをダウンロード
Meet Chat Notifications拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension is used to show a notification for when someone uses the chat in Google Meet. 拡張機能の基本情報
| 名前 | |
| ID | pjhpmbjmhmajhgjhkojockbjjapppdbe |
| 公式URL | https://chromewebstore.google.com/detail/meet-chat-notifications/pjhpmbjmhmajhgjhkojockbjjapppdbe |
| 説明 | Meet Chat Notifications |
| ファイルサイズ | 45.63 KB |
| インストール数 | 8,630 |
| 現在のバージョン | 2.1.0 |
| 最終更新日 | 2021-06-22 |
| 公開日 | 2020-05-18 |
| 評価 | 3.60/5 合計 25 レビュー |
| 開発者 | ExpressTech |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://mycodding.com/ |
| ヘルプページのURL | https://mycodding.com/privacy-policy/ |
| 対応言語 | en,en-US,pt-BR,pt-PT |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"version": "2.1.0",
"name": "Meet Chat Notifications",
"description": "Meet Chat Notifications",
"author": "SmolBren",
"permissions": [
"notifications"
],
"icons": {
"16": "icon16.png",
"24": "icon24.png",
"36": "icon36.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_icon": {
"15": "icon16.png",
"24": "icon24.png",
"36": "icon36.png",
"48": "icon48.png"
},
"default_title": "Meet Chat Notification",
"default_popup": "index.html"
},
"default_locale": "en",
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/meet.google.com\/*"
],
"js": [
"content.js"
]
}
]
} | |