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.

O que é InspectGPT?

InspectGPT é uma extensão do Chrome desenvolvida por https://inspectgpt.com, e sua principal característica é "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.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão InspectGPT

Baixe arquivos de extensão InspectGPT no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome InspectGPT InspectGPT
ID clppmiggpgjclcmgmmlfpcnpckphieik
URL Oficial https://chromewebstore.google.com/detail/inspectgpt/clppmiggpgjclcmgmmlfpcnpckphieik
Descrição 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.
Tamanho do Arquivo 14.3 KB
Contagem de Instalações 38
Versão Atual 1.0
Última Atualização 2023-01-15
Data de Publicação 2023-01-14
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://inspectgpt.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://inspectgpt.com
URL da Página de Ajuda https://inspectgpt.com/support
Idiomas Suportados 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"
    }
}