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
官方網址 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
電子郵箱 [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\/*"
            ]
        }
    ]
}