InspectGPT

Our extension makes it simple to find GPT-generated text on any web page. Just install it and let it scan the page for you.

Was ist InspectGPT?

InspectGPT ist eine Chrome-Erweiterung, die von https://inspectgpt.com entwickelt wurde, und ihr Hauptmerkmal ist "Our extension makes it simple to find GPT-generated text on any web page. Just install it and let it scan the page for you.".

Erweiterungsscreenshots

screenshot
screenshot

InspectGPT-Erweiterungs-CRX-Datei herunterladen

Laden Sie InspectGPT-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        InspectGPT is a chrome extension that helps users identify content on a webpage that has been written by artificial intelligence. When a user runs InspectGPT extension, the app analyzes the paragraphs on a page in search of AI-written content. Once the app has identified any GPT-generated content, it can provide the user with information about where that content appears on the page. This app may be useful for people who want to understand the prevalence of AI-generated content on the web, or for those who are interested in analyzing the output of the GPT language model.                    

Grundlegende Informationen zur Erweiterung

Name InspectGPT InspectGPT
ID clppmiggpgjclcmgmmlfpcnpckphieik
Offizielle URL https://chromewebstore.google.com/detail/inspectgpt/clppmiggpgjclcmgmmlfpcnpckphieik
Beschreibung Our extension makes it simple to find GPT-generated text on any web page. Just install it and let it scan the page for you.
Dateigröße 14.3 KB
Installationsanzahl 38
Aktuelle Version 1.0
Letztes Update 2023-01-15
Veröffentlichungsdatum 2023-01-14
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler https://inspectgpt.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://inspectgpt.com
Hilfeseite URL https://inspectgpt.com/support
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "InspectGPT",
    "description": "Our extension makes it simple to find GPT-generated text on any web page. Just install it and let it scan the page for you.",
    "version": "1.0",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/inspectgpt.com\/*"
    ],
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "16": "inspect-gpt.png",
        "48": "inspect-gpt.png",
        "128": "inspect-gpt.png"
    },
    "action": {
        "default_icon": "inspect-gpt.png",
        "default_popup": "popup.html",
        "default_title": "InspectGPT"
    }
}