CamFlip

Flips your webcam

Hvad er CamFlip?

CamFlip er en Chrome-udvidelse udviklet af https://camflip.net, og dens hovedfunktion er "Flips your webcam".

Udvidelsesskærmbilleder

screenshot

Download CamFlip-udvidelses-CRX-fil

Download CamFlip-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        *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                    

Grundlæggende oplysninger om udvidelsen

Navn CamFlip CamFlip
ID jgnejnfdbomaelibbccppknilnnhklnk
Officiel URL https://chromewebstore.google.com/detail/camflip/jgnejnfdbomaelibbccppknilnnhklnk
Beskrivelse Flips your webcam
Filstørrelse 81.51 KB
Antal Installationer 8,248
Nuværende Version 1.3.0
Senest Opdateret 2023-03-26
Udgivelsesdato 2021-01-05
Bedømmelse 4.04/5 Samlet 25 Bedømmelser
Udvikler https://camflip.net
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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
}