CamFlip

Flips your webcam

CamFlip란 무엇입니까?

CamFlip은(는) https://camflip.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Flips your webcam"입니다.

확장 프로그램 스크린샷

screenshot

CamFlip 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        *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                    

확장 프로그램 기본 정보

이름 CamFlip CamFlip
ID jgnejnfdbomaelibbccppknilnnhklnk
공식 URL https://chromewebstore.google.com/detail/camflip/jgnejnfdbomaelibbccppknilnnhklnk
설명 Flips your webcam
파일 크기 81.51 KB
설치 횟수 8,248
현재 버전 1.3.0
최근 업데이트 2023-03-26
출시 날짜 2021-01-05
평점 4.04/5 총 25 개의 평점
개발자 https://camflip.net
이메일 [email protected]
결제 유형 free
지원되는 언어 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
}