DetectGPT - Detect Chat GPT Content

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

Vad är DetectGPT - Detect Chat GPT Content?

DetectGPT - Detect Chat GPT Content är en Chrome-tillägg utvecklad av Originality.ai, och dess huvudfunktion är "DetectGPT - Detect Chat GPT Generated Writing. Identify AI-generated content while browsing the web.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner DetectGPT - Detect Chat GPT Content-förlängningens CRX-fil

Ladda ner DetectGPT - Detect Chat GPT Content-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn DetectGPT - Detect Chat GPT Content DetectGPT - Detect Chat GPT Content
ID oadkgbgppkhoaaoepjbcnjejmkknaobg
Officiell webbadress https://chromewebstore.google.com/detail/detectgpt-detect-chat-gpt/oadkgbgppkhoaaoepjbcnjejmkknaobg
Beskrivning DetectGPT - Detect Chat GPT Generated Writing. Identify AI-generated content while browsing the web.
Filstorlek 289 KB
Antal Installationer 12,783
Aktuell Version 0.3.8
Senast Uppdaterad 2023-04-10
Publiceringsdatum 2022-12-21
Betyg 3.31/5 Totalt 35 Betyg
Utvecklare Originality.ai
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://detect.chat
URL till Sekretesspolicy Sidan https://originality.ai/privacy-policy
Stödda Språk 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": [
                ""
            ]
        }
    ]
}