LeetCode Mate
LeetCode Mate is a Chrome extension to improve your LeetCode Experience! The current LeetCode UI can sometimes be hard to use…
Co to jest LeetCode Mate?
LeetCode Mate to rozszerzenie Chrome opracowane przez JasonSun, a jego główną funkcją jest „LeetCode Mate is a Chrome extension to improve your LeetCode Experience! The current LeetCode UI can sometimes be hard to use…”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia LeetCode Mate
Pobierz pliki rozszerzeń LeetCode Mate w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | LeetCode Mate |
ID | phdjfdamgpemogokbkjeidpekchgmhem |
Oficjalny URL | https://chromewebstore.google.com/detail/leetcode-mate/phdjfdamgpemogokbkjeidpekchgmhem |
Opis | LeetCode Mate is a Chrome extension to improve your LeetCode Experience! The current LeetCode UI can sometimes be hard to use… |
Rozmiar pliku | 564 KB |
Liczba instalacji | 108 |
Aktualna Wersja | 2.0.0 |
Ostatnia Aktualizacja | 2021-01-20 |
Data Publikacji | 2020-12-29 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | JasonSun |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/bethandtownes/leetcode-mate |
Adres URL Strony Pomocy | https://github.com/bethandtownes/leetcode-mate |
Obsługiwane Języki | 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'" } |