I think...
Reaction tool for Google Meet.
Co to jest I think...?
I think... to rozszerzenie Chrome opracowane przez Creative Gear, a jego główną funkcją jest „Reaction tool for Google Meet.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia I think...
Pobierz pliki rozszerzeń I think... w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | nblplmepciahhnkmboopdjelaacgjiol |
| Oficjalny URL | https://chromewebstore.google.com/detail/i-think/nblplmepciahhnkmboopdjelaacgjiol |
| Opis | Reaction tool for Google Meet. |
| Rozmiar pliku | 100 KB |
| Liczba instalacji | 217 |
| Aktualna Wersja | 1.6 |
| Ostatnia Aktualizacja | 2022-03-01 |
| Data Publikacji | 2022-02-21 |
| Deweloper | Creative Gear |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://ithink.ooo |
| Obsługiwane Języki | 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\/*"
]
}
]
} | |