AI Bar - Prompt ChatGPT from the URL bar

Type your prompt after "ai" in the Chrome URL bar and press return!

O que é AI Bar - Prompt ChatGPT from the URL bar?

AI Bar - Prompt ChatGPT from the URL bar é uma extensão do Chrome desenvolvida por mash, e sua principal característica é "Type your prompt after "ai" in the Chrome URL bar and press return!".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão AI Bar - Prompt ChatGPT from the URL bar

Baixe arquivos de extensão AI Bar - Prompt ChatGPT from the URL bar 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

                        AI Bar enables you to enter your prompt in the URL bar, hit return and jump to ChatGPT, saving a few clicks for you.                    

Informações Básicas da Extensão

Nome AI Bar - Prompt ChatGPT from the URL bar AI Bar - Prompt ChatGPT from the URL bar
ID ljjafkobiacdlnpndeacabenohfnidhk
URL Oficial https://chromewebstore.google.com/detail/ai-bar-prompt-chatgpt-fro/ljjafkobiacdlnpndeacabenohfnidhk
Descrição Type your prompt after "ai" in the Chrome URL bar and press return!
Tamanho do Arquivo 33.28 KB
Contagem de Instalações 46
Versão Atual 1.3
Última Atualização 2023-07-02
Data de Publicação 2023-04-03
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor mash
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "AI Bar - Prompt ChatGPT from the URL bar",
    "description": "Type your prompt after \"ai\" in the Chrome URL bar and press return!",
    "version": "1.3",
    "omnibox": {
        "keyword": "ai"
    },
    "background": {
        "service_worker": "src\/service-worker.js",
        "type": "module"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "assets\/icon_16.png",
        "32": "assets\/icon_32.png",
        "48": "assets\/icon_48.png",
        "128": "assets\/icon_128.png"
    },
    "host_permissions": [
        "https:\/\/chat.openai.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "src\/debug.content.js",
                "src\/content.chatgpt.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "src\/page.chatgpt.js"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ]
        }
    ],
    "action": {
        "default_title": "Customize which AI to prompt",
        "default_popup": "src\/popup.html"
    }
}