Google Colab Keep-Alive

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

Что такое Google Colab Keep-Alive?

Google Colab Keep-Alive - это расширение Chrome, разработанное v.snehith999, и его основная функция - "Automatically clicks the screen every 60 seconds to keep Google Colab sessions alive.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Google Colab Keep-Alive

Скачайте файлы расширений Google Colab Keep-Alive в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название Google Colab Keep-Alive Google Colab Keep-Alive
ID bokldcdphgknojlbfhpbbgkggjfhhaek
Официальный URL https://chromewebstore.google.com/detail/google-colab-keep-alive/bokldcdphgknojlbfhpbbgkggjfhhaek
Описание Automatically clicks the screen every 60 seconds to keep Google Colab sessions alive.
Размер файла 2.03 MB
Количество установок 521
Текущая Версия 1.0
Последнее Обновление 2023-10-28
Дата публикации 2023-10-28
Рейтинг 4.00/5 Всего 2 оценок
Разработчик v.snehith999
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.linkedin.com/in/snehitvaddi/
URL страницы помощи https://github.com/snehitvaddi/Google-Colab-Keep-Alive/issues
URL страницы политики конфиденциальности https://www.freeprivacypolicy.com/live/4b3b2483-cded-4845-ac20-489d3b07779e
Поддерживаемые языки 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"
            ]
        }
    ]
}