Deepfake Detection

AI extension for YouTube™ deepfake detection

Co je Deepfake Detection?

Deepfake Detection je rozšíření Chrome vyvinuté deep2universe, a jeho hlavní funkcí je „AI extension for YouTube™ deepfake detection“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Deepfake Detection

Stáhněte si soubory rozšíření Deepfake Detection ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Creating deepfake videos is getting easier and easier. You don't need technical skills anymore to make a manipulated video. You just follow an online instruction, that's enough.

At the same time, the videos are becoming more and more realistic.
Humans are far inferior to AI when it comes to recognizing deepfake videos. Therefore, it is now possible to mainipulate entire societies, since the naked eye can no longer recognize deepfakes.
The question for everyone is how to protect themselves and others from this disinformation.

Part of the solution is to critically question and check if what you see is plausible. 
In addition, however, we need technical tools and have to fight AI with AI.                    

Základní Informace o Rozšíření

Název Deepfake Detection Deepfake Detection
ID gbokgdgbgfcdlbnonmlajiapbcpkdgnk
Oficiální URL https://chromewebstore.google.com/detail/deepfake-detection/gbokgdgbgfcdlbnonmlajiapbcpkdgnk
Popis AI extension for YouTube™ deepfake detection
Velikost souboru 397 KB
Počet instalací 76
Aktuální Verze 1.0
Poslední Aktualizace 2022-04-04
Datum Vydání 2022-04-04
Hodnocení 3.67/5 Celkem 3 Hodnocení
Vývojář deep2universe
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/deep2universe/DeepFakeChrome
URL Stránky Nápovědy https://github.com/deep2universe/DeepFakeChrome
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Deepfake Detection",
    "description": "AI extension for YouTube\u2122 deepfake detection",
    "version": "1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "permissions": [
        "storage",
        "activeTab",
        "tabs",
        "webNavigation"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/logo16.png",
            "32": "\/images\/logo32.png",
            "48": "\/images\/logo48.png",
            "128": "\/images\/logo128.png"
        }
    },
    "icons": {
        "16": "\/images\/logo16.png",
        "32": "\/images\/logo32.png",
        "48": "\/images\/logo48.png",
        "128": "\/images\/logo128.png"
    },
    "options_page": "options.html",
    "host_permissions": [
        "https:\/\/www.youtube.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/images\/*"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ]
}