I think...

Reaction tool for Google Meet.

I think...とは何ですか?

I think...はCreative Gearによって開発されたChromeの拡張機能で、その主な機能は「Reaction tool for Google Meet.」です。

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

screenshot

I think...拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Google Meetで会議をする際に、「発言したい」「いいね!」等のリアクションを表示できるツールです。

This is a tool that allows you to display reactions such as "I want to talk!" and "Nice!" when you have a meeting on Google Meet. and other reactions.

Home Page
https://ithink.ooo                    

拡張機能の基本情報

名前 I think... I think...
ID nblplmepciahhnkmboopdjelaacgjiol
公式URL https://chromewebstore.google.com/detail/i-think/nblplmepciahhnkmboopdjelaacgjiol
説明 Reaction tool for Google Meet.
ファイルサイズ 100 KB
インストール数 217
現在のバージョン 1.6
最終更新日 2022-03-01
公開日 2022-02-21
開発者 Creative Gear
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://ithink.ooo
対応言語 ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "I think...",
    "description": "Reaction tool for Google Meet.",
    "version": "1.6",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "css": [
                "content_script.css"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "notifications"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self';"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "analytics.js",
                "icons\/*"
            ],
            "matches": [
                "https:\/\/meet.google.com\/*"
            ]
        }
    ]
}