Fake Profile Detector (Deepfake, GAN)

Right-click on a profile picture, our model will detect if that image contains a GAN generated or real person!

Fake Profile Detector (Deepfake, GAN)란 무엇입니까?

Fake Profile Detector (Deepfake, GAN)은(는) v7에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Right-click on a profile picture, our model will detect if that image contains a GAN generated or real person!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Fake Profile Detector (Deepfake, GAN) 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        How to use V7 Deepfake Detector
- Install V7 Chrome extension
- Enable Chrome notifications on your computer
- Choose the profile picture you want to scan
- Right-click on the picture and select "Check Fake Profile Picture"
- See results in the top right-hand corner notification

DISCLAIMERS/NOTES:
- Currently only works on Desktop
- This chrome extension uses notifications to output the AI model results, so be sure to have them activated and not to have 'Do Not Disturb' mode when using it
- If you are on a Mac, you can often find the results in your notification center which you can access by swiping with two fingers from the right edge of the trackpad to the left.
- This AI model only works with StyleGAN images used to generate fake human faces of people who don't really exist. It does not detect video deepfakes or face swaps.
- Does not currently work with deep fakes in video or face swaps                    

확장 프로그램 기본 정보

이름 Fake Profile Detector (Deepfake, GAN) Fake Profile Detector (Deepfake, GAN)
ID jbpcgcnnhmjmajjkgdaogpgefbnokpcc
공식 URL https://chromewebstore.google.com/detail/fake-profile-detector-dee/jbpcgcnnhmjmajjkgdaogpgefbnokpcc
설명 Right-click on a profile picture, our model will detect if that image contains a GAN generated or real person!
파일 크기 1.76 MB
설치 횟수 10,659
현재 버전 0.1.3
최근 업데이트 2023-08-13
출시 날짜 2022-03-12
평점 3.38/5 총 32 개의 평점
개발자 v7
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.v7labs.com/
도움말 페이지 URL https://www.v7labs.com/contact
개인정보 보호 정책 페이지 URL https://www.v7labs.com/terms/dps
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fake Profile Detector (Deepfake, GAN)",
    "description": "Right-click on a profile picture, our model will detect if that image contains a GAN generated or real person!",
    "homepage_url": "https:\/\/www.v7labs.com\/",
    "version": "0.1.3",
    "manifest_version": 3,
    "permissions": [
        "contextMenus",
        "notifications",
        "activeTab",
        "storage",
        "unlimitedStorage"
    ],
    "background": {
        "service_worker": "\/scripts\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "\/scripts\/global.js",
                "\/scripts\/helpers.js",
                "\/scripts\/content.js"
            ],
            "all_frames": true,
            "match_about_blank": true,
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "\/templates\/options.html",
        "open_in_tab": false
    },
    "action": {
        "default_title": "Fake Profile Detector (Deepfake, GAN)",
        "default_icon": {
            "16": "\/assets\/icons\/logo\/16.png",
            "48": "\/assets\/icons\/logo\/48.png",
            "128": "\/assets\/icons\/logo\/128.png"
        },
        "default_popup": "\/templates\/popup.html"
    },
    "icons": {
        "16": "\/assets\/icons\/logo\/16.png",
        "48": "\/assets\/icons\/logo\/48.png",
        "128": "\/assets\/icons\/logo\/128.png"
    }
}