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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}