LeetCode Mate
LeetCode Mate is a Chrome extension to improve your LeetCode Experience! The current LeetCode UI can sometimes be hard to use…
Cos'è LeetCode Mate?
LeetCode Mate è un'estensione di Chrome sviluppata da JasonSun, e la sua funzione principale è "LeetCode Mate is a Chrome extension to improve your LeetCode Experience! The current LeetCode UI can sometimes be hard to use…".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione LeetCode Mate
Scarica i file di estensione LeetCode Mate in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | LeetCode Mate |
ID | phdjfdamgpemogokbkjeidpekchgmhem |
URL Ufficiale | https://chromewebstore.google.com/detail/leetcode-mate/phdjfdamgpemogokbkjeidpekchgmhem |
Descrizione | LeetCode Mate is a Chrome extension to improve your LeetCode Experience! The current LeetCode UI can sometimes be hard to use… |
Dimensione del File | 564 KB |
Conteggio Installazioni | 108 |
Versione Corrente | 2.0.0 |
Ultimo Aggiornamento | 2021-01-20 |
Data di Pubblicazione | 2020-12-29 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | JasonSun |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/bethandtownes/leetcode-mate |
URL della Pagina di Aiuto | https://github.com/bethandtownes/leetcode-mate |
Lingue Supportate | 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'" } |