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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a toggle to flip Google Meet camera image, Flip camera to match what others really see."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Google Meet Mirror / Flip Camera एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        📽 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"
    ]
}