Google Meet Mirror / Flip Camera
Adds a toggle to flip Google Meet camera image, Flip camera to match what others really see.
Google Meet Mirror / Flip Camera là gì?
Google Meet Mirror / Flip Camera là một tiện ích mở rộng Chrome được phát triển bởi jpa, và tính năng chính của nó là "Adds a toggle to flip Google Meet camera image, Flip camera to match what others really see.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Google Meet Mirror / Flip Camera
Tải xuống các tệp mở rộng Google Meet Mirror / Flip Camera dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
📽 Flip google meet camera to match what others really see ! 📹 ⚠️ Only compatible with Google meet this plugin will unmirror your camera and only your camera ! Other chrome plugins that won't work : - Google grid extension has the option to flip the camera but it's now broken because Google Meet has deployed its own grid system. - VideoMirror extension mirror all videos in the room including shared screen. This is bad because the shared screen become unreadable, all is written in reverse !
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Google Meet Mirror / Flip Camera |
ID | cbnfajeeaebnldmgnodjlkfeomdacjlc |
URL Chính Thức | https://chromewebstore.google.com/detail/google-meet-mirror-flip-c/cbnfajeeaebnldmgnodjlkfeomdacjlc |
Mô tả | Adds a toggle to flip Google Meet camera image, Flip camera to match what others really see. |
Kích Thước Tệp | 31.89 KB |
Số Lần Cài Đặt | 113,748 |
Phiên Bản Hiện Tại | 1.0.2 |
Cập Nhật Lần Cuối | 2020-11-05 |
Ngày Phát Hành | 2020-10-13 |
Đánh Giá | 3.07/5 Tổng số 59 Đánh Giá |
Nhà Phát Triển | jpa |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/jpaille/FlipMyCam |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google Meet Mirror \/ Flip Camera", "description": "Adds a toggle to flip Google Meet camera image, Flip camera to match what others really see.", "version": "1.0.2", "author": "Julien Paille", "icons": { "24": "icon24.png", "36": "icon36.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_icon": { "24": "icon24.png", "36": "icon36.png", "48": "icon48.png", "128": "icon128.png" }, "default_popup": "popup.html", "default_title": "Google Meet Mirror : Flip camera to match what others see" }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "init_flip.js" ] } ], "permissions": [ "activeTab", "declarativeContent" ] } |