Colab Themes
Changes the appearance of Google Colab!
ما هو Colab Themes؟
Colab Themes هو إضافة Chrome تم تطويرها بواسطة dannycol، والميزة الرئيسية لها هي "Changes the appearance of Google Colab!".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Colab Themes
قم بتنزيل ملفات الامتداد Colab Themes بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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": [ " |