Chatgpt assist

No more hassle of copying code from chat gpt results to the replit. This extension provides add-on features to the existing…

O que é Chatgpt assist?

Chatgpt assist é uma extensão do Chrome desenvolvida por Abu, e sua principal característica é "No more hassle of copying code from chat gpt results to the replit. This extension provides add-on features to the existing…".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Chatgpt assist

Baixe arquivos de extensão Chatgpt assist 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

                        No more hassle of copying code from chat gpt results to the replit. This extension provides add-on features to the existing chat-gpt website in opening the replit editor where you can paste the code inside.

More to come:
- Export the conversation in single click.                    

Informações Básicas da Extensão

Nome Chatgpt assist Chatgpt assist
ID fhdcoikaffdfehjpfkcaackmflcnjcom
URL Oficial https://chromewebstore.google.com/detail/chatgpt-assist/fhdcoikaffdfehjpfkcaackmflcnjcom
Descrição No more hassle of copying code from chat gpt results to the replit. This extension provides add-on features to the existing…
Tamanho do Arquivo 790 KB
Contagem de Instalações 1,289
Versão Atual 0.0.4
Última Atualização 2023-02-05
Data de Publicação 2022-12-07
Classificação 2.33/5 Total de 3 Avaliações
Desenvolvedor Abu
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://www.claritynotes.io/privacypolicy.html
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.0.4",
    "short_name": "Chatgpt assist",
    "name": "Chatgpt assist",
    "action": [],
    "background": {
        "service_worker": "background.bundle.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/chat*"
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "style.css",
                "modal.css"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*.stackgpt.com\/*"
    ],
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}