CamFlip

Flips your webcam

What is CamFlip?

CamFlip is a Chrome extension developed by https://camflip.net, and its main feature is "Flips your webcam".

Extension Screenshots

screenshot

Download CamFlip Extension CRX File

Download CamFlip extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        *NEW* in 1.3.0: No longer flips screen sharing on Google Meet

CamFlip creates a virtual webcam in your browser which is mirrored horizontally. This is useful for video chat applications because others in the video chat receive the mirrored version instead of the original from your webcam.

- Useful for video chat applications
- Tested in Google Meet, Zoom for web, Microsoft Teams
- Free for unlimited use with a small watermark. Remove the watermark for a $2.99 one-time payment                    

Extension Basic Information

Name CamFlip CamFlip
ID jgnejnfdbomaelibbccppknilnnhklnk
Official URL https://chromewebstore.google.com/detail/camflip/jgnejnfdbomaelibbccppknilnnhklnk
Description Flips your webcam
File Size 81.51 KB
Installation Count 8,248
Current Version 1.3.0
Last Updated 2023-03-26
Publish Date 2021-01-05
Rating 4.04/5 Total 25 Ratings
Developer https://camflip.net
Email [email protected]
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CamFlip",
    "version": "1.3.0",
    "description": "Flips your webcam",
    "permissions": [
        "storage"
    ],
    "icons": {
        "32": "icons\/CamFlip-Light-32.png",
        "48": "icons\/CamFlip-Light-48.png",
        "64": "icons\/CamFlip-Light-64.png",
        "128": "icons\/CamFlip-Light-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "inject.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "inject_flip.js",
        "filter_cam.js",
        "icons\/CamFlip-Dark-64.png"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.camflip.net\/*",
            "*:\/\/*.camflip-web.test\/*",
            "*:\/\/*.camflip.test\/*"
        ]
    },
    "manifest_version": 2
}