Deepfake Detection
AI extension for YouTube™ deepfake detection
Deepfake Detection란 무엇입니까?
Deepfake Detection은(는) deep2universe에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "AI extension for YouTube™ deepfake detection"입니다.
확장 프로그램 스크린샷
Deepfake Detection 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
ID | gbokgdgbgfcdlbnonmlajiapbcpkdgnk |
공식 URL | 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\/*" ] } ] } |