I think...

Reaction tool for Google Meet.

Qu'est-ce que I think... ?

I think... est une extension Chrome développée par Creative Gear, et sa fonction principale est "Reaction tool for Google Meet.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension I think...

Téléchargez les fichiers d'extension I think... au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom I think... I think...
ID nblplmepciahhnkmboopdjelaacgjiol
URL Officiel https://chromewebstore.google.com/detail/i-think/nblplmepciahhnkmboopdjelaacgjiol
Description Reaction tool for Google Meet.
Taille du Fichier 100 KB
Nombre d'Installations 217
Version Actuelle 1.6
Dernière Mise à Jour 2022-03-01
Date de Publication 2022-02-21
Développeur Creative Gear
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://ithink.ooo
Langues Prises en Charge 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\/*"
            ]
        }
    ]
}