I think...
Reaction tool for Google Meet.
What is I think...?
I think... is a Chrome extension developed by Creative Gear, and its main feature is "Reaction tool for Google Meet.".
Extension Screenshots
Download I think... Extension CRX File
Download I think... extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | |
ID | nblplmepciahhnkmboopdjelaacgjiol |
Official URL | https://chromewebstore.google.com/detail/i-think/nblplmepciahhnkmboopdjelaacgjiol |
Description | Reaction tool for Google Meet. |
File Size | 100 KB |
Installation Count | 217 |
Current Version | 1.6 |
Last Updated | 2022-03-01 |
Publish Date | 2022-02-21 |
Developer | Creative Gear |
[email protected] | |
Payment Type | free |
Extension Website | https://ithink.ooo |
Supported Languages | 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\/*" ] } ] } |