Google Colab Keep-Alive

Automatically clicks the screen every 60 seconds to keep Google Colab sessions alive.

O que é Google Colab Keep-Alive?

Google Colab Keep-Alive é uma extensão do Chrome desenvolvida por v.snehith999, e sua principal característica é "Automatically clicks the screen every 60 seconds to keep Google Colab sessions alive.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Google Colab Keep-Alive

Baixe arquivos de extensão Google Colab Keep-Alive 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

                        Automatically clicks on the web page every few seconds to keep sessions active. Perfect for platforms that time out due to inactivity.                    

Informações Básicas da Extensão

Nome Google Colab Keep-Alive Google Colab Keep-Alive
ID bokldcdphgknojlbfhpbbgkggjfhhaek
URL Oficial https://chromewebstore.google.com/detail/google-colab-keep-alive/bokldcdphgknojlbfhpbbgkggjfhhaek
Descrição Automatically clicks the screen every 60 seconds to keep Google Colab sessions alive.
Tamanho do Arquivo 2.03 MB
Contagem de Instalações 521
Versão Atual 1.0
Última Atualização 2023-10-28
Data de Publicação 2023-10-28
Classificação 4.00/5 Total de 2 Avaliações
Desenvolvedor v.snehith999
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.linkedin.com/in/snehitvaddi/
URL da Página de Ajuda https://github.com/snehitvaddi/Google-Colab-Keep-Alive/issues
URL da Página de Política de Privacidade https://www.freeprivacypolicy.com/live/4b3b2483-cded-4845-ac20-489d3b07779e
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Google Colab Keep-Alive",
    "version": "1.0",
    "description": "Automatically clicks the screen every 60 seconds to keep Google Colab sessions alive.",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16-2.png"
        }
    },
    "permissions": [
        "activeTab",
        "notifications"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "background.js"
            ]
        }
    ]
}