Colab Themes

Changes the appearance of Google Colab!

Vad är Colab Themes?

Colab Themes är en Chrome-tillägg utvecklad av dannycol, och dess huvudfunktion är "Changes the appearance of Google Colab!".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Colab Themes-förlängningens CRX-fil

Ladda ner Colab Themes-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Colab Themes Colab Themes
ID hledcfghfgmmjpnfkklcifpcdogjlgig
Officiell webbadress https://chromewebstore.google.com/detail/colab-themes/hledcfghfgmmjpnfkklcifpcdogjlgig
Beskrivning Changes the appearance of Google Colab!
Filstorlek 146 KB
Antal Installationer 2,301
Aktuell Version 1.1.0
Senast Uppdaterad 2022-06-15
Publiceringsdatum 2022-04-29
Betyg 4.33/5 Totalt 9 Betyg
Utvecklare dannycol
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}