Deepfake Detection
AI extension for YouTube™ deepfake detection
Co to jest Deepfake Detection?
Deepfake Detection to rozszerzenie Chrome opracowane przez deep2universe, a jego główną funkcją jest „AI extension for YouTube™ deepfake detection”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Deepfake Detection
Pobierz pliki rozszerzeń Deepfake Detection w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Deepfake Detection |
ID | gbokgdgbgfcdlbnonmlajiapbcpkdgnk |
Oficjalny URL | https://chromewebstore.google.com/detail/deepfake-detection/gbokgdgbgfcdlbnonmlajiapbcpkdgnk |
Opis | AI extension for YouTube™ deepfake detection |
Rozmiar pliku | 397 KB |
Liczba instalacji | 76 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2022-04-04 |
Data Publikacji | 2022-04-04 |
Ocena | 3.67/5 Łącznie 3 Oceny |
Deweloper | deep2universe |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/deep2universe/DeepFakeChrome |
Adres URL Strony Pomocy | https://github.com/deep2universe/DeepFakeChrome |
Obsługiwane Języki | 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\/*" ] } ] } |