Colab Themes
Changes the appearance of Google Colab!
Colab Themes क्या है?
Colab Themes dannycol द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Changes the appearance of Google Colab!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Colab Themes एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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": [ " |