ChatGPT Query Detector

A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box

O que é ChatGPT Query Detector?

ChatGPT Query Detector é uma extensão do Chrome desenvolvida por codekansas, e sua principal característica é "A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão ChatGPT Query Detector

Baixe arquivos de extensão ChatGPT Query Detector 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

                        This is a simple Chrome extension which loads a bit of Javascript to the ChatGPT website to detect if the "q" parameter was set, and if so, enters it into the chat bar.                    

Informações Básicas da Extensão

Nome ChatGPT Query Detector ChatGPT Query Detector
ID fpmkloadngjobjlckhokcaklldkjbojh
URL Oficial https://chromewebstore.google.com/detail/chatgpt-query-detector/fpmkloadngjobjlckhokcaklldkjbojh
Descrição A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box
Tamanho do Arquivo 33.96 KB
Contagem de Instalações 38
Versão Atual 1.2
Última Atualização 2023-05-03
Data de Publicação 2023-02-15
Classificação 1.00/5 Total de 1 Avaliações
Desenvolvedor codekansas
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/codekansas/chatgpt-chrome-extension
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Query Detector",
    "description": "A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box",
    "version": "1.2",
    "icons": {
        "128": "128.png"
    },
    "permissions": [],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    }
}