LeetCode Mate
LeetCode Mate is a Chrome extension to improve your LeetCode Experience! The current LeetCode UI can sometimes be hard to use…
ما هو LeetCode Mate؟
LeetCode Mate هو إضافة Chrome تم تطويرها بواسطة JasonSun، والميزة الرئيسية لها هي "LeetCode Mate is a Chrome extension to improve your LeetCode Experience! The current LeetCode UI can sometimes be hard to use…".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة LeetCode Mate
قم بتنزيل ملفات الامتداد LeetCode Mate بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
LeetCode Mate is a Chrome extension to improve your LeetCode Experience! The current LeetCode UI can sometimes be hard to use when running custom user input and read debug print information using the left hand size panel. The output box is too small to read out useful information without scrolling. This extension addresses this issue by creating alternative resizable, and draggable dialog panel for run and submit code and display their run results accordingly. User can also toggle the UI of the extension by a keyboard shortcut. It also supports Toggling cursor blinking and bracket matching for the CodeMirror Editor. Both LeetCode-CN and LeetCode are supported.
معلومات أساسية عن التمديد
الاسم | LeetCode Mate |
ID | phdjfdamgpemogokbkjeidpekchgmhem |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/leetcode-mate/phdjfdamgpemogokbkjeidpekchgmhem |
الوصف | LeetCode Mate is a Chrome extension to improve your LeetCode Experience! The current LeetCode UI can sometimes be hard to use… |
حجم الملف | 564 KB |
عدد التثبيتات | 108 |
النسخة الحالية | 2.0.0 |
آخر تحديث | 2021-01-20 |
تاريخ النشر | 2020-12-29 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | JasonSun |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/bethandtownes/leetcode-mate |
عنوان صفحة المساعدة | https://github.com/bethandtownes/leetcode-mate |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "2.0.0", "name": "LeetCode Mate", "icons": { "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/leetcode.com\/problems\/*", "https:\/\/leetcode-cn.com\/problems\/*" ], "css": [ "codemirror.css", "material.css", "content.styles.css" ], "js": [ "contentScript.bundle.js" ] } ], "background": { "scripts": [ "background.bundle.js" ], "persistent": false }, "permissions": [ "storage", "tabs" ], "web_accessible_resources": [ "page_script.js", "content.styles.css", "cache.json", "cache_cn.json", "icon-128.png", "icon-34.png" ], "manifest_version": 2, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |