Shared Slides Clicker for Google Meet
Allows multiple users to control a Google Slides presentation from within Google Meet
Τι είναι το Shared Slides Clicker for Google Meet;
Το Shared Slides Clicker for Google Meet είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://fonner.gitlab.io/shared-slides-clicker, και η κύρια λειτουργία του είναι "Allows multiple users to control a Google Slides presentation from within Google Meet".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Shared Slides Clicker for Google Meet
Λήψη αρχείων επέκτασης Shared Slides Clicker for Google Meet σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
With so many people working remotely, we are all doing a lot of meeting and presenting over Google Meet. But what do you do when multiple people need to share control of the same presentation? Instead of just telling the presenter to go to the "next slide" over and over, use this extension to share control with other attendees easily and seamlessly. Once the presenter who sharing their screen installs this extension, they can share control of their currently active Google Slides presentation with other users of this extension. Within Google Meet, other users can easily change slides and control videos. Supports both the legacy and new, refreshed Meet web user interface.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Shared Slides Clicker for Google Meet |
ID | hbfioanokcpbblpgfjggelapbcaeppop |
Επίσημο URL | https://chromewebstore.google.com/detail/shared-slides-clicker-for/hbfioanokcpbblpgfjggelapbcaeppop |
Περιγραφή | Allows multiple users to control a Google Slides presentation from within Google Meet |
Μέγεθος Αρχείου | 2.38 MB |
Αριθμός Εγκαταστάσεων | 1,464 |
Τρέχουσα Έκδοση | 1.0.0 |
Τελευταία Ενημέρωση | 2023-05-21 |
Ημερομηνία Δημοσίευσης | 2020-09-28 |
Αξιολόγηση | 5.00/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | https://fonner.gitlab.io/shared-slides-clicker |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://fonner.gitlab.io/shared-slides-clicker |
Διεύθυνση URL της Σελίδας Βοήθειας | https://gitlab.com/fonner/shared-slides-clicker/-/issues |
URL της Σελίδας Πολιτικής Απορρήτου | https://fonner.dev/privacy |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Shared Slides Clicker for Google Meet", "version": "1.0.0", "icons": { "16": "assets\/icons\/favicon-16.png", "32": "assets\/icons\/favicon-32.png", "48": "assets\/icons\/favicon-48.png", "128": "assets\/icons\/favicon-128.png" }, "description": "Allows multiple users to control a Google Slides presentation from within Google Meet", "homepage_url": "https:\/\/jedfonner.gitlab.io\/shared-slides-clicker\/", "short_name": "Shared Slides Clicker", "permissions": [ "activeTab", "notifications", "storage", "identity" ], "host_permissions": [ "https:\/\/docs.google.com\/presentation\/*", "https:\/\/meet.google.com\/*" ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "author": "jedfonner", "minimum_chrome_version": "88", "action": { "default_popup": "popup.html", "default_icon": { "16": "assets\/icons\/favicon-16.png", "32": "assets\/icons\/favicon-32.png", "48": "assets\/icons\/favicon-48.png", "128": "assets\/icons\/favicon-128.png" }, "default_title": "SSC" }, "options_page": "options.html", "options_ui": { "page": "options.html", "open_in_tab": false }, "background": { "service_worker": "js\/background.bundle.js" }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "js\/meetContentScript.bundle.js" ], "css": [ "css\/meetContentScript.css" ] }, { "matches": [ "https:\/\/docs.google.com\/presentation\/*" ], "js": [ "js\/presentationContentScript.bundle.js" ] } ], "web_accessible_resources": [ { "resources": [ "assets\/*" ], "matches": [ " |