Colab Themes

Changes the appearance of Google Colab!

Colab Themes란 무엇입니까?

Colab Themes은(는) dannycol에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Changes the appearance of Google Colab!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Colab Themes 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension will enhance your data science experience by allowing you to change the style of Google Colab much more than a simple dark mode or light mode! By importing your own themes from VS Code, or using any of the 56 provided themes, your Google Colab experience will be transformed by your favorite theme changing the way you see your code and data.                    

확장 프로그램 기본 정보

이름 Colab Themes Colab Themes
ID hledcfghfgmmjpnfkklcifpcdogjlgig
공식 URL https://chromewebstore.google.com/detail/colab-themes/hledcfghfgmmjpnfkklcifpcdogjlgig
설명 Changes the appearance of Google Colab!
파일 크기 146 KB
설치 횟수 2,301
현재 버전 1.1.0
최근 업데이트 2022-06-15
출시 날짜 2022-04-29
평점 4.33/5 총 9 개의 평점
개발자 dannycol
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Colab Themes",
    "description": "Changes the appearance of Google Colab!",
    "version": "1.1.0",
    "manifest_version": 3,
    "permissions": [
        "scripting",
        "storage"
    ],
    "action": {
        "default_title": "Themes for Google Colab",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/colab.research.google.com\/*",
                "*:\/\/*.googleusercontent.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "host_permissions": [
        "https:\/\/colab.research.google.com\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "themes\/*.json"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "16": "icons\/favicon16.png",
        "32": "icons\/favicon32.png",
        "96": "icons\/favicon96.png",
        "128": "icons\/favicon128.png"
    }
}