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
官方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"
    ]
}