CamFlip

Flips your webcam

Wat is CamFlip?

CamFlip is een Chrome-extensie ontwikkeld door https://camflip.net, en de belangrijkste functie is "Flips your webcam".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie CamFlip

Download CamFlip-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        *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                    

Basisinformatie over de Extensie

Naam CamFlip CamFlip
ID jgnejnfdbomaelibbccppknilnnhklnk
Officiële URL https://chromewebstore.google.com/detail/camflip/jgnejnfdbomaelibbccppknilnnhklnk
Beschrijving Flips your webcam
Bestandsgrootte 81.51 KB
Aantal Installaties 8,248
Huidige Versie 1.3.0
Laatst Bijgewerkt 2023-03-26
Publicatiedatum 2021-01-05
Beoordeling 4.04/5 Totaal 25 Beoordelingen
Ontwikkelaar https://camflip.net
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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
}