DeepfakeProof

A plugin that helps the user discover deepfakes during their browser visits.

什麼是DeepfakeProof?

DeepfakeProof是由DuckDuckGoose開發的Chrome擴展程式,該擴展的主要功能是“A plugin that helps the user discover deepfakes during their browser visits.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載DeepfakeProof擴展crx文件

下載DeepfakeProof擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        SCAN WEB PAGE IMAGES IN REAL-TIME:
With just one click, you can activate the plugin to automatically start scanning images on the web pages you visit in real-time.

DETECT DEEPFAKES:
Every image on the web pages you visit will be scanned and classified as a real image or a deepfake. If a (suspected) deepfake is detected, the user will be warned.

KEEP YOURSELF SAFE:
Deepfakes are created using artificial intelligence to manipulate digital media, like images and videos, and they can be used by malicious actors to create convincingly fake identities or impersonate others. With DeepfakeProof, you can browse the web with confidence, knowing that you can tell the difference between real and fake.

FEATURES
- Free and unlimited image analysis
- Real-time deepfake detection
- Detects various types of deepfakes, including GAN images, face swaps, and more
- GDPR compliant
- Featured in SIDNfonds and Digital Government of the Netherlands

NOTE:
- DeepfakeProof works on all websites except image search pages of search engines
- Currently, the Firefox and Safari browsers are not supported
- This plugin does not support video detection 

For more information, please visit us at duckduckgoose.ai                    

擴展基本資訊

名稱 DeepfakeProof DeepfakeProof
ID ehjldchkbnfkmicpofahcghimhkkpngo
官方網址 https://chromewebstore.google.com/detail/deepfakeproof/ehjldchkbnfkmicpofahcghimhkkpngo
簡介 A plugin that helps the user discover deepfakes during their browser visits.
檔案大小 182 KB
安裝次數 574
目前版本 2.0.0
更新時間 2023-06-24
上架時間 2022-12-19
評分 5.00/5 共 3 次評分
開發者 DuckDuckGoose
電子郵箱 [email protected]
付費類型 free
擴展官網 https://duckduckgoose.ai
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DeepfakeProof",
    "description": "A plugin that helps the user discover deepfakes during their browser visits.",
    "version": "2.0.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*.jpg",
                "images\/*.png",
                "images\/help-img\/*.svg",
                "images\/feedback\/*.svg",
                "images\/overlay\/*.svg"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/www.google.com\/search?*",
                "*:\/\/www.bing.com\/images\/search?*",
                "*:\/\/www.bing.com\/search?*",
                "*:\/\/duckduckgo.com\/?*"
            ],
            "css": [
                "css\/content\/dfp.css"
            ],
            "js": [
                "js\/content\/constants.js",
                "js\/content\/utility.js",
                "js\/content\/feedbackBeta.js",
                "js\/content\/icons.js",
                "js\/content\/overlay.js",
                "js\/content\/visualisation.js",
                "js\/content\/content.js",
                "js\/content\/observers.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup\/index.html",
        "default_icon": "images\/icon_32.png"
    },
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    }
}