ChatGPT Auto Refresh

The Chrome app would refresh the OpenAI GPT-3 chat website whenever an error occurs on the page. The app would monitor the page for…

O que é ChatGPT Auto Refresh?

ChatGPT Auto Refresh é uma extensão do Chrome desenvolvida por Jayeonsoft, e sua principal característica é "The Chrome app would refresh the OpenAI GPT-3 chat website whenever an error occurs on the page. The app would monitor the page for…".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão ChatGPT Auto Refresh

Baixe arquivos de extensão ChatGPT Auto Refresh 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

                        The Chrome app would refresh the OpenAI GPT-3 chat website whenever an error occurs on the page. The app would monitor the page for any error messages or signs of failure, and automatically refresh the page if it detects an issue. This app would be particularly useful for users who frequently use the OpenAI GPT-3 chat website, and want to ensure that the page is always functioning properly without having to manually refresh the page in the event of an error. With this app installed, users can continue their conversation with the GPT-3 chatbot without interruption, as the app will handle refreshing the page in the background whenever an error occurs.                    

Informações Básicas da Extensão

Nome ChatGPT Auto Refresh ChatGPT Auto Refresh
ID aigpphcebcckejhodhpogldjhfedoegj
URL Oficial https://chromewebstore.google.com/detail/chatgpt-auto-refresh/aigpphcebcckejhodhpogldjhfedoegj
Descrição The Chrome app would refresh the OpenAI GPT-3 chat website whenever an error occurs on the page. The app would monitor the page for…
Tamanho do Arquivo 2.12 MB
Contagem de Instalações 1,140
Versão Atual 1.1.0.3
Última Atualização 2023-03-07
Data de Publicação 2023-02-03
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor Jayeonsoft
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT Auto Refresh",
    "version": "1.1.0.3",
    "manifest_version": 3,
    "permissions": [
        "tabs",
        "activeTab",
        "webRequest",
        "scripting",
        "storage"
    ],
    "icons": {
        "128": "icon128.png"
    },
    "host_permissions": [
        "https:\/\/chat.openai.com\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/chat*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ]
}