I think...
Reaction tool for Google Meet.
Was ist I think...?
I think... ist eine Chrome-Erweiterung, die von Creative Gear entwickelt wurde, und ihr Hauptmerkmal ist "Reaction tool for Google Meet.".
Erweiterungsscreenshots
I think...-Erweiterungs-CRX-Datei herunterladen
Laden Sie I think...-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | nblplmepciahhnkmboopdjelaacgjiol |
| Offizielle URL | https://chromewebstore.google.com/detail/i-think/nblplmepciahhnkmboopdjelaacgjiol |
| Beschreibung | Reaction tool for Google Meet. |
| Dateigröße | 100 KB |
| Installationsanzahl | 217 |
| Aktuelle Version | 1.6 |
| Letztes Update | 2022-03-01 |
| Veröffentlichungsdatum | 2022-02-21 |
| Entwickler | Creative Gear |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://ithink.ooo |
| Unterstützte Sprachen | 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\/*"
]
}
]
} | |