DetectGPT - Detect Chat GPT Content

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

什么是DetectGPT - Detect Chat GPT Content?

DetectGPT - Detect Chat GPT Content是由Originality.ai开发的Chrome扩展程序,该扩展的主要功能是“DetectGPT - Detect Chat GPT Generated Writing. Identify AI-generated content while browsing the web.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载DetectGPT - Detect Chat GPT Content扩展crx文件

下载DetectGPT - Detect Chat GPT Content扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 DetectGPT - Detect Chat GPT Content DetectGPT - Detect Chat GPT Content
ID oadkgbgppkhoaaoepjbcnjejmkknaobg
官方URL https://chromewebstore.google.com/detail/detectgpt-detect-chat-gpt/oadkgbgppkhoaaoepjbcnjejmkknaobg
简介 DetectGPT - Detect Chat GPT Generated Writing. Identify AI-generated content while browsing the web.
文件大小 289 KB
安装次数 12,783
当前版本 0.3.8
更新时间 2023-04-10
上架时间 2022-12-21
评分 3.31/5 共35次评分
开发者 Originality.ai
电子邮箱 [email protected]
付费类型 free
扩展官网 https://detect.chat
隐私政策页面URL https://originality.ai/privacy-policy
支持的语言 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": [
                ""
            ]
        }
    ]
}