Colab Themes

Changes the appearance of Google Colab!

Что такое Colab Themes?

Colab Themes - это расширение Chrome, разработанное dannycol, и его основная функция - "Changes the appearance of Google Colab!".

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

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Colab Themes

Скачайте файлы расширений 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
Электронная почта [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"
    }
}