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": [ " |