Deepfake Detection
AI extension for YouTube™ deepfake detection
Deepfake Detection क्या है?
Deepfake Detection deep2universe द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "AI extension for YouTube™ deepfake detection"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Deepfake Detection एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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\/*" ] } ] } |