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) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย v7 และคุณลักษณะหลักของมันคือ "Right-click on a profile picture, our model will detect if that image contains a GAN generated or real person!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fake Profile Detector (Deepfake, GAN)

ดาวน์โหลดไฟล์ส่วนขยาย Fake Profile Detector (Deepfake, GAN) ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}