Automagic: auto-reload script for ChatGPT

Automagic is an auto-reloader for ChatGPT that auto-reloads ChatGPT whenever it is at capacity.

O que é Automagic: auto-reload script for ChatGPT?

Automagic: auto-reload script for ChatGPT é uma extensão do Chrome desenvolvida por EVOLV, e sua principal característica é "Automagic is an auto-reloader for ChatGPT that auto-reloads ChatGPT whenever it is at capacity.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Automagic: auto-reload script for ChatGPT

Baixe arquivos de extensão Automagic: auto-reload script for ChatGPT 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

                        Automagic is an auto-reload & auto-refresh utility for ChatGPT, that does the magic whenever ChatGPT is at it's maximum capacity. It effectively leverages a tiny but useful automation script to repeatedly auto-refresh the page multiple times- until the at-capacity issue is gone & ChatGPT is ready to rock again- hence helping you save good amount of mundane & manual effort!                    

Informações Básicas da Extensão

Nome Automagic: auto-reload script for ChatGPT Automagic: auto-reload script for ChatGPT
ID kpffgnpjncfggijjacclbamhcpebfmco
URL Oficial https://chromewebstore.google.com/detail/automagic-auto-reload-scr/kpffgnpjncfggijjacclbamhcpebfmco
Descrição Automagic is an auto-reloader for ChatGPT that auto-reloads ChatGPT whenever it is at capacity.
Tamanho do Arquivo 149 KB
Contagem de Instalações 39
Versão Atual 1.1
Última Atualização 2023-04-05
Data de Publicação 2023-02-18
Desenvolvedor EVOLV
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://goevolv.io?privacy_policy=true
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Automagic: auto-reload script for ChatGPT",
    "short_name": "Automagic auto-reload",
    "version": "1.1",
    "description": "Automagic is an auto-reloader for ChatGPT that auto-reloads ChatGPT whenever it is at capacity.",
    "icons": {
        "16": "icon.png",
        "32": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "background"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/auth\/login\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "bk.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "*.js",
                "*.html",
                "*.css",
                "*.png",
                "*.svg",
                "*.jpg",
                "*.jpeg",
                ".mp3"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true
        }
    ],
    "offline_enabled": true,
    "author": "Automagic",
    "content_security_policy": {
        "extension_pages": "font-src 'self'; script-src 'self'; object-src 'self'; worker-src 'self'",
        "content_scripts": "font-src 'self'; script-src 'self'; object-src 'self'; worker-src 'self'"
    },
    "action": {
        "default_icon": "icon.png",
        "default_title": "Automagic: auto-reloader for ChatGPT"
    }
}