Colab Themes
Changes the appearance of Google Colab!
Colab Themes là gì?
Colab Themes là một tiện ích mở rộng Chrome được phát triển bởi dannycol, và tính năng chính của nó là "Changes the appearance of Google Colab!".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Colab Themes
Tải xuống các tệp mở rộng Colab Themes dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Colab Themes |
ID | hledcfghfgmmjpnfkklcifpcdogjlgig |
URL Chính Thức | https://chromewebstore.google.com/detail/colab-themes/hledcfghfgmmjpnfkklcifpcdogjlgig |
Mô tả | Changes the appearance of Google Colab! |
Kích Thước Tệp | 146 KB |
Số Lần Cài Đặt | 2,301 |
Phiên Bản Hiện Tại | 1.1.0 |
Cập Nhật Lần Cuối | 2022-06-15 |
Ngày Phát Hành | 2022-04-29 |
Đánh Giá | 4.33/5 Tổng số 9 Đánh Giá |
Nhà Phát Triển | dannycol |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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": [ " |