I think...

Reaction tool for Google Meet.

I think... क्या है?

I think... Creative Gear द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Reaction tool for Google Meet."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में I think... एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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\/*"
            ]
        }
    ]
}