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是由jpa開發的Chrome擴展程式,該擴展的主要功能是“Adds a toggle to flip Google Meet camera image, Flip camera to match what others really see.”。

擴展截圖

screenshot
screenshot

下載Google Meet Mirror / Flip Camera擴展crx文件

下載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
官方網址 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"
    ]
}