leetcode-shortcuts
leetcode shortcuts
Cos'è leetcode-shortcuts?
leetcode-shortcuts è un'estensione di Chrome sviluppata da yn.jiyu, e la sua funzione principale è "leetcode shortcuts".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione leetcode-shortcuts
Scarica i file di estensione leetcode-shortcuts 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 shortcuts, allow you to commit your code by pressing Ctrl + Enter. Run with example test cases: Ctrl + ' Submit: Ctrl + Enter Retrieve last submitted code: Ctrl + Alt + m Reset to default (clear): Ctrl + Alt + l
Informazioni di Base sull'Estensione
Nome | leetcode-shortcuts |
ID | ipdbhbmdmldjkdjfbkdnipjmokkinnci |
URL Ufficiale | https://chromewebstore.google.com/detail/leetcode-shortcuts/ipdbhbmdmldjkdjfbkdnipjmokkinnci |
Descrizione | leetcode shortcuts |
Dimensione del File | 14.72 KB |
Conteggio Installazioni | 23 |
Versione Corrente | 1.13.1.4 |
Ultimo Aggiornamento | 2024-01-30 |
Data di Pubblicazione | 2022-06-12 |
Sviluppatore | yn.jiyu |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/Anderbone/leetcode-shortcut-browser-extension |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "leetcode-shortcuts", "version": "1.13.1.4", "description": "leetcode shortcuts", "icons": { "48": "icons\/leetcode_logo.png" }, "action": { "default_icon": "icons\/leetcode_logo.png", "default_title": "Leetcode shortcuts", "default_popup": "shortcut.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.leetcode.com\/*" ], "js": [ "shortcut.js" ], "css": [ "shortcut.css" ] } ] } |