DetectGPT - Detect Chat GPT Content

DetectGPT - Detect Chat GPT Generated Writing. Identify AI-generated content while browsing the web.

Co to jest DetectGPT - Detect Chat GPT Content?

DetectGPT - Detect Chat GPT Content to rozszerzenie Chrome opracowane przez Originality.ai, a jego główną funkcją jest „DetectGPT - Detect Chat GPT Generated Writing. Identify AI-generated content while browsing the web.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia DetectGPT - Detect Chat GPT Content

Pobierz pliki rozszerzeń DetectGPT - Detect Chat GPT Content 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

                        AI Content detection: Utilize AI technology to determine if content on your screen was generated using an AI writing tool.

Detects ChatGPT and Other Widely Used AI Content detection. Harness the power of AI to determine if content on your screen was created with an AI writing tool such as ChatGPT.


Usage Instructions:

Install Chrome Extension
Copy the text you want to verify for AI generation and either:
Right Click and select “Scan with DetectGPT”
Copy the text and paste it into the manual check area in the extension and click “Check Content”

Alternatively, for a page scan:

Visit the page you would like to examine
Open the extension
Click refresh and view results

⚡️ Quickly and easily check for AI written content on a page:
Upon visiting a website, just open up the extension and it will automatically scan the page and provide you with a result, this makes scanning for AI anywhere online a breeze.

✨ No account needed:
There is no account or signup required, so you can install the extension and start scanning straight away!

AI Trained on Popular NLP Models:
DetectGPT AI is trained to identify content generated by widely used NLP models in popular AI writing tools.

It has been proven accurate for the following NLP models:

ChatGPT
GPT-3.5
GPT-3
GPT-J
GPT-NEO
GPT-2


Some Limitations
The detection of AI-generated content is not 100% accurate and may produce some false positives. With 94% accuracy on GPT-3 raw output, it will not always detect AI-generated content. However, over a large enough sample, the results can be trusted.

Safeguard Your Search Rankings for the Future
Google has explicitly stated that it does not want to rank AI-generated spam and has shared that it can detect such content.

It is widely anticipated that Google will take or has already taken measures to prevent AI-generated spam content from inundating search results with inaccurate information.

6 Ways to Recognize AI-Generated Content when not using an AI detector:

No inconsistencies in grammar and syntax: Modern AI-generated content is typically error-free, while human-generated content is more likely to contain grammatical inconsistencies.
Absence of tone and style: AI-generated content might lack the nuances, personality, and style characteristic of human-written content.
Unusual or repetitive word choice: AI-generated content may employ uncommon or repetitive words or phrases that do not naturally fit with the rest of the content.
Repetitive structure: AI-generated content might have a repetitive structure or lack the variety and flow found in human-written content.
Lack of context: AI-generated content may not have context or relevance to the topic or audience. Timely context or references are good indicators that content was not AI-produced.
Factual errors: AI-generated content can be identified when it contains factual mistakes. Since AI writing tools might lack context, they may include factually inaccurate information, which can be helpful in determining if the content was generated by AI.                    

Podstawowe informacje o rozszerzeniu

Nazwa DetectGPT - Detect Chat GPT Content DetectGPT - Detect Chat GPT Content
ID oadkgbgppkhoaaoepjbcnjejmkknaobg
Oficjalny URL https://chromewebstore.google.com/detail/detectgpt-detect-chat-gpt/oadkgbgppkhoaaoepjbcnjejmkknaobg
Opis DetectGPT - Detect Chat GPT Generated Writing. Identify AI-generated content while browsing the web.
Rozmiar pliku 289 KB
Liczba instalacji 12,783
Aktualna Wersja 0.3.8
Ostatnia Aktualizacja 2023-04-10
Data Publikacji 2022-12-21
Ocena 3.31/5 Łącznie 35 Oceny
Deweloper Originality.ai
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://detect.chat
Adres URL Strony Polityki Prywatności https://originality.ai/privacy-policy
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DetectGPT - Detect Chat GPT Content",
    "manifest_version": 3,
    "version": "0.3.8",
    "description": "DetectGPT -  Detect Chat GPT Generated Writing.  Identify AI-generated content while browsing the web.",
    "permissions": [
        "scripting",
        "activeTab",
        "storage",
        "contextMenus"
    ],
    "icons": {
        "16": ".\/images\/default16.png",
        "32": ".\/images\/default32.png",
        "48": ".\/images\/default48.png",
        "128": ".\/images\/default128.png"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_icon": {
            "16": ".\/images\/default16.png",
            "32": ".\/images\/default32.png",
            "48": ".\/images\/default48.png",
            "128": ".\/images\/default128.png"
        },
        "default_title": "Detect GPT",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "content.js",
                "inject.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}