I think...
Reaction tool for Google Meet.
Τι είναι το I think...;
Το I think... είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Creative Gear, και η κύρια λειτουργία του είναι "Reaction tool for Google Meet.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης I think...
Λήψη αρχείων επέκτασης 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\/*" ] } ] } |