Google Meet Mirror / Flip Camera

Adds a toggle to flip Google Meet camera image, Flip camera to match what others really see.

O que é Google Meet Mirror / Flip Camera?

Google Meet Mirror / Flip Camera é uma extensão do Chrome desenvolvida por jpa, e sua principal característica é "Adds a toggle to flip Google Meet camera image, Flip camera to match what others really see.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Google Meet Mirror / Flip Camera

Baixe arquivos de extensão Google Meet Mirror / Flip Camera no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Google Meet Mirror / Flip Camera Google Meet Mirror / Flip Camera
ID cbnfajeeaebnldmgnodjlkfeomdacjlc
URL Oficial https://chromewebstore.google.com/detail/google-meet-mirror-flip-c/cbnfajeeaebnldmgnodjlkfeomdacjlc
Descrição Adds a toggle to flip Google Meet camera image, Flip camera to match what others really see.
Tamanho do Arquivo 31.89 KB
Contagem de Instalações 113,748
Versão Atual 1.0.2
Última Atualização 2020-11-05
Data de Publicação 2020-10-13
Classificação 3.07/5 Total de 59 Avaliações
Desenvolvedor jpa
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/jpaille/FlipMyCam
Idiomas Suportados 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"
    ]
}