Meet Notifications

Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.

Meet Notificationsとは何ですか?

Meet NotificationsはDevDiaryによって開発されたChromeの拡張機能で、その主な機能は「Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Meet Notifications拡張機能のCRXファイルをダウンロード

Meet Notifications拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        --- วิธีใช้งาน ---
1. คลิกที่ icon "Meet Notifications"
2. คลิกที่ switch button ให้ปุ่มเปลี่ยนสถานะเป็นสีฟ้า
เพียงเท่านี้ก็สามารถใช้งาน Meet Notifications ได้แล้ว 👍

--- How to use ---
1. Click on the icon "Meet Notifications".
2. Click the switch button to change the status to blue.
That's it. You can use the Meet Notifications. 👍                    

拡張機能の基本情報

名前 Meet Notifications Meet Notifications
ID lekaeknoegncijhnchifjdnclipppcnp
公式URL https://chrome.google.com/webstore/detail/meet-notifications/lekaeknoegncijhnchifjdnclipppcnp
説明 Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.
ファイルサイズ 19.48 KB
インストール数 34
現在のバージョン 0.1.5
最終更新日 2020-06-24
公開日 2020-06-24
評価 4.00/5 合計 2 レビュー
開発者 DevDiary
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.facebook.com/devdiaryTH
ヘルプページのURL https://www.facebook.com/devdiaryTH
プライバシーポリシーページのURL https://devdiaryth.github.io/Meet-Notifications-Privacy-Policy/index.html
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Meet Notifications",
    "version": "0.1.5",
    "manifest_version": 2,
    "description": "Meet Notifications improves the Google Meet experience with \"Notification\" when the audience sent the message in the room.",
    "author": "Ic3berg",
    "content_security_policy": "default-src 'self'",
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "assets\/icon16.png",
            "48": "assets\/icon48.png",
            "128": "assets\/icon128.png"
        },
        "default_popup": "popup.html",
        "default_title": "Meet Notifications"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "content.js",
                "controller.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "content.js",
        "controller.js"
    ]
}