Deepfake Detection

AI extension for YouTube™ deepfake detection

什麼是Deepfake Detection?

Deepfake Detection是由deep2universe開發的Chrome擴展程式,該擴展的主要功能是“AI extension for YouTube™ deepfake detection”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Deepfake Detection擴展crx文件

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

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Deepfake Detection Deepfake Detection
ID gbokgdgbgfcdlbnonmlajiapbcpkdgnk
官方網址 https://chromewebstore.google.com/detail/deepfake-detection/gbokgdgbgfcdlbnonmlajiapbcpkdgnk
簡介 AI extension for YouTube™ deepfake detection
檔案大小 397 KB
安裝次數 76
目前版本 1.0
更新時間 2022-04-04
上架時間 2022-04-04
評分 3.67/5 共 3 次評分
開發者 deep2universe
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/deep2universe/DeepFakeChrome
說明頁面URL https://github.com/deep2universe/DeepFakeChrome
支援的語言 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\/*"
            ]
        }
    ]
}