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คืออะไร?

Google Meet Mirror / Flip Camera เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jpa และคุณลักษณะหลักของมันคือ "Adds a toggle to flip Google Meet camera image, Flip camera to match what others really see."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Meet Mirror / Flip Camera

ดาวน์โหลดไฟล์ส่วนขยาย Google Meet Mirror / Flip Camera ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        📽 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 !                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Google Meet Mirror / Flip Camera Google Meet Mirror / Flip Camera
ID cbnfajeeaebnldmgnodjlkfeomdacjlc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/google-meet-mirror-flip-c/cbnfajeeaebnldmgnodjlkfeomdacjlc
คำอธิบาย Adds a toggle to flip Google Meet camera image, Flip camera to match what others really see.
ขนาดไฟล์ 31.89 KB
จำนวนการติดตั้ง 113,748
เวอร์ชันปัจจุบัน 1.0.2
อัปเดตครั้งล่าสุด 2020-11-05
วันที่เผยแพร่ 2020-10-13
คะแนน 3.07/5 รวมทั้งหมด 59 คะแนน
ผู้พัฒนา jpa
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/jpaille/FlipMyCam
ภาษาที่รองรับ 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"
    ]
}