Leetcode Custom Themes
Allows you to change Leetcode Code Editor Themes
Leetcode Custom Themes क्या है?
Leetcode Custom Themes Vishnuvardhan S द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows you to change Leetcode Code Editor Themes"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Leetcode Custom Themes एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
With this extension, you may personalize the Leetcode Code Editor with a number of different themes. New features: New Leetcode UI: Added support for new Leetcode UI. Provides a list of monaco based themes. Old Leetcode UI: Added two new themes, "Google Interview - Light and Dark" which simulates Google Doc where you will have no color schemes.
एक्सटेंशन की मूल जानकारी
नाम | Leetcode Custom Themes |
ID | nkbhfhhjppjiflcboogbiahjlknaehhl |
आधिकारिक URL | https://chromewebstore.google.com/detail/leetcode-custom-themes/nkbhfhhjppjiflcboogbiahjlknaehhl |
विवरण | Allows you to change Leetcode Code Editor Themes |
फ़ाइल का आकार | 131 KB |
स्थापना संख्या | 473 |
वर्तमान संस्करण | 2.0.0 |
अंतिम अपडेट | 2022-12-24 |
प्रकाशन तिथि | 2021-12-08 |
रेटिंग | 5.00/5 कुल 7 रेटिंग्स |
डेवलपर | Vishnuvardhan S |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/vishnuvardhan-s/leetcode-custom-themes |
सहायता पृष्ठ URL | https://github.com/vishnuvardhan-s/leetcode-custom-themes/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Leetcode Custom Themes", "version": "2.0.0", "manifest_version": 3, "description": "Allows you to change Leetcode Code Editor Themes", "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "author": "Vishnuvardhan S", "homepage_url": "https:\/\/github.com\/vishnuvardhan-s\/leetcode-custom-themes", "action": { "default_icon": "icons\/icon32.png", "default_popup": "popup.html", "default_title": "Leetcode Custom Themes" }, "background": { "service_worker": "background.js" }, "permissions": [ "storage", "scripting", "tabs" ], "host_permissions": [ "https:\/\/leetcode.com\/**" ], "content_scripts": [ { "matches": [ "https:\/\/leetcode.com\/*" ], "js": [ "inject.js" ], "all_frames": true } ], "web_accessible_resources": [ { "resources": [ "content.js", "themes\/*.json" ], "matches": [ "https:\/\/leetcode.com\/*" ] } ] } |