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ファイルをダウンロード

Colab Themes拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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