I think...
Reaction tool for Google Meet.
I think...란 무엇입니까?
I think...은(는) Creative Gear에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Reaction tool for Google Meet."입니다.
확장 프로그램 스크린샷
I think... 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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\/*" ] } ] } |