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はv.snehith999によって開発されたChromeの拡張機能で、その主な機能は「Automatically clicks the screen every 60 seconds to keep Google Colab sessions alive.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Google Colab Keep-Alive拡張機能のCRXファイルをダウンロード

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
Eメール [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"
            ]
        }
    ]
}