I think...

Reaction tool for Google Meet.

I think... là gì?

I think... là một tiện ích mở rộng Chrome được phát triển bởi Creative Gear, và tính năng chính của nó là "Reaction tool for Google Meet.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng I think...

Tải xuống các tệp mở rộng I think... dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên I think... I think...
ID nblplmepciahhnkmboopdjelaacgjiol
URL Chính Thức https://chromewebstore.google.com/detail/i-think/nblplmepciahhnkmboopdjelaacgjiol
Mô tả Reaction tool for Google Meet.
Kích Thước Tệp 100 KB
Số Lần Cài Đặt 217
Phiên Bản Hiện Tại 1.6
Cập Nhật Lần Cuối 2022-03-01
Ngày Phát Hành 2022-02-21
Nhà Phát Triển Creative Gear
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://ithink.ooo
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}