Colab Themes
Changes the appearance of Google Colab!
¿Qué es Colab Themes?
Colab Themes es una extensión de Chrome desarrollada por dannycol, y su función principal es "Changes the appearance of Google Colab!".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Colab Themes
Descarga archivos de extensión Colab Themes en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Colab Themes |
ID | hledcfghfgmmjpnfkklcifpcdogjlgig |
URL Oficial | https://chromewebstore.google.com/detail/colab-themes/hledcfghfgmmjpnfkklcifpcdogjlgig |
Descripción | Changes the appearance of Google Colab! |
Tamaño del Archivo | 146 KB |
Cantidad de Instalaciones | 2,301 |
Versión Actual | 1.1.0 |
Última Actualización | 2022-06-15 |
Fecha de Publicación | 2022-04-29 |
Calificación | 4.33/5 Total de 9 Calificaciones |
Desarrollador | dannycol |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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": [ " |