LeetCode Mate
LeetCode Mate is a Chrome extension to improve your LeetCode Experience! The current LeetCode UI can sometimes be hard to use…
Qu'est-ce que LeetCode Mate ?
LeetCode Mate est une extension Chrome développée par JasonSun, et sa fonction principale est "LeetCode Mate is a Chrome extension to improve your LeetCode Experience! The current LeetCode UI can sometimes be hard to use…".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension LeetCode Mate
Téléchargez les fichiers d'extension LeetCode Mate au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | LeetCode Mate |
ID | phdjfdamgpemogokbkjeidpekchgmhem |
URL Officiel | https://chromewebstore.google.com/detail/leetcode-mate/phdjfdamgpemogokbkjeidpekchgmhem |
Description | LeetCode Mate is a Chrome extension to improve your LeetCode Experience! The current LeetCode UI can sometimes be hard to use… |
Taille du Fichier | 564 KB |
Nombre d'Installations | 108 |
Version Actuelle | 2.0.0 |
Dernière Mise à Jour | 2021-01-20 |
Date de Publication | 2020-12-29 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | JasonSun |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/bethandtownes/leetcode-mate |
URL de la Page d'Aide | https://github.com/bethandtownes/leetcode-mate |
Langues Prises en Charge | 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'" } |