I think...
Reaction tool for Google Meet.
什么是I think...?
I think...是由Creative Gear开发的Chrome扩展程序,该扩展的主要功能是“Reaction tool for Google Meet.”。
扩展截图
下载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
扩展基本信息
名称 | |
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\/*" ] } ] } |