Colab Themes

Changes the appearance of Google Colab!

O que é Colab Themes?

Colab Themes é uma extensão do Chrome desenvolvida por dannycol, e sua principal característica é "Changes the appearance of Google Colab!".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Colab Themes

Baixe arquivos de extensão Colab Themes no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Colab Themes Colab Themes
ID hledcfghfgmmjpnfkklcifpcdogjlgig
URL Oficial https://chromewebstore.google.com/detail/colab-themes/hledcfghfgmmjpnfkklcifpcdogjlgig
Descrição Changes the appearance of Google Colab!
Tamanho do Arquivo 146 KB
Contagem de Instalações 2,301
Versão Atual 1.1.0
Última Atualização 2022-06-15
Data de Publicação 2022-04-29
Classificação 4.33/5 Total de 9 Avaliações
Desenvolvedor dannycol
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}