Hive AI Detector
Check if text or images are AI generated
Τι είναι το Hive AI Detector;
Το Hive AI Detector είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://thehive.ai, και η κύρια λειτουργία του είναι "Check if text or images are AI generated".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Hive AI Detector
Λήψη αρχείων επέκτασης Hive AI Detector σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Detect AI-generated text and images from popular generative models right from your browser for free. Yes, that's right, both text AND images in the same free extension! Hive's AI-generated Content Detection model allows you to quickly scan any text or image on the web to determine whether or not it was made by AI. Use Hive AI Detector easily while browsing with three different ways to scan content — right-clicking it right on the webpage, pasting it into our text box, or uploading a file. This free tool displays the likelihood that something is AI-generated. For image inputs, our Detector also predicts what generative engine was used to create it. Our free AI Content Detection has been praised by The New York Times, The Wall Street Journal, and PCWorld, as well as by various artists and educators worldwide. It can be used to check for plagiarism, catch misinformation, and more — no login necessary. Our detector uses AI itself to detect AI-generated content. With machine learning, we're able to spot otherwise imperceptible differences between what's human-made and what's AI-generated, beyond style, word choice, and number of fingers. We trained our model on millions of examples of both AI-generated and human-made content, and we regularly update it to perform well on the newest versions of Midjourney, ChatGPT, etc. To use the extension: From this page, click "Add to Chrome" Click on the puzzle piece icon to the right of your search bar and pin Hive AI Detector to the extensions menu To scan content, either right-click it directly on a webpage or click the Hive logo to enter content via text box or file upload View your result!
Βασικές Πληροφορίες Επέκτασης
Όνομα | Hive AI Detector |
ID | cmeikcgfecnhojcbfapbmpbjgllklcbi |
Επίσημο URL | https://chromewebstore.google.com/detail/hive-ai-detector/cmeikcgfecnhojcbfapbmpbjgllklcbi |
Περιγραφή | Check if text or images are AI generated |
Μέγεθος Αρχείου | 54.1 KB |
Αριθμός Εγκαταστάσεων | 9,000 |
Τρέχουσα Έκδοση | 0.0.5 |
Τελευταία Ενημέρωση | 2024-02-15 |
Ημερομηνία Δημοσίευσης | 2023-07-09 |
Αξιολόγηση | 4.94/5 Συνολικά 367 Αξιολογήσεις |
Προγραμματιστής | https://thehive.ai |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://hivemoderation.com/ai-generated-content-detection |
Διεύθυνση URL της Σελίδας Βοήθειας | https://hivemoderation.com/ai-generated-content-detection/installation-complete |
URL της Σελίδας Πολιτικής Απορρήτου | https://thehive.ai/privacy |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "version": "0.0.5", "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "action": { "default_popup": "popup\/index.html" }, "background": { "service_worker": "service_worker.js", "type": "module" }, "content_scripts": [ { "js": [ "scripts\/Popover\/utils\/common.js", "scripts\/Popover\/index.js", "scripts\/Popover\/Pages\/FormPage\/index.js", "scripts\/Popover\/Pages\/FormPage\/textareaInput.js", "scripts\/Popover\/Pages\/FormPage\/imageInput.js", "scripts\/Popover\/Pages\/FormPage\/TermsAndConditions.js", "scripts\/Popover\/Pages\/FormPage\/togglePopover.js", "scripts\/Popover\/Pages\/LoadingPage\/index.js", "scripts\/Popover\/Pages\/ErrorPage\/index.js", "scripts\/Popover\/Pages\/ResultsPage\/index.js", "scripts\/Popover\/utils\/submitForResults.js", "scripts\/Popover\/Pages\/TermsAndConditionsPage\/index.js", "scripts\/Popover\/utils\/listenForResults.js", "scripts\/Popover\/utils\/stopPropagation.js" ], "css": [ "scripts\/Popover\/style.css", "scripts\/Popover\/Pages\/FormPage\/style.css", "scripts\/Popover\/Pages\/LoadingPage\/style.css", "scripts\/Popover\/Pages\/ErrorPage\/style.css", "scripts\/Popover\/Pages\/ResultsPage\/style.css", "scripts\/Popover\/Pages\/TermsAndConditionsPage\/style.css" ], "matches": [ "*:\/\/*\/*" ] } ], "web_accessible_resources": [ { "resources": [ "icons\/*" ], "matches": [ "*:\/\/*\/*" ] } ], "permissions": [ "contextMenus", "storage" ] } |