Deepfake Detection
AI extension for YouTube™ deepfake detection
Deepfake Detection là gì?
Deepfake Detection là một tiện ích mở rộng Chrome được phát triển bởi deep2universe, và tính năng chính của nó là "AI extension for YouTube™ deepfake detection".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Deepfake Detection
Tải xuống các tệp mở rộng Deepfake Detection dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Deepfake Detection |
ID | gbokgdgbgfcdlbnonmlajiapbcpkdgnk |
URL Chính Thức | https://chromewebstore.google.com/detail/deepfake-detection/gbokgdgbgfcdlbnonmlajiapbcpkdgnk |
Mô tả | AI extension for YouTube™ deepfake detection |
Kích Thước Tệp | 397 KB |
Số Lần Cài Đặt | 76 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2022-04-04 |
Ngày Phát Hành | 2022-04-04 |
Đánh Giá | 3.67/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | deep2universe |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/deep2universe/DeepFakeChrome |
URL Trang Trợ Giúp | https://github.com/deep2universe/DeepFakeChrome |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |