Leetcode format
Adds Format code button on leetcode to format the code using Prettier code formatter
Co je Leetcode format?
Leetcode format je rozšíření Chrome vyvinuté Madhur Ahuja, a jeho hlavní funkcí je „Adds Format code button on leetcode to format the code using Prettier code formatter“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Leetcode format
Stáhněte si soubory rozšíření Leetcode format ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
This Google chrome extension adds the Format button to the LeetCode code editor. Currently supported programming languages are Java, C++, JavaScript, TypeScript and Dart. Supports LeetCode old and new UI both, including dynamic layout. Release Notes 1.9: * Bug fix with dynamic layout Release Notes 1.8: * Bug fixes Release Notes 1.7: * Bug fixes for new UI * Add hotkey support for old UI as well Release Notes v1.6: * Added hotkey support (CTRL + ALT + F) Release Notes v1.5: * Added support for both old and new UI.
Základní Informace o Rozšíření
Název | Leetcode format |
ID | imogghebhifnnlgogigikjecilkicfpp |
Oficiální URL | https://chromewebstore.google.com/detail/leetcode-format/imogghebhifnnlgogigikjecilkicfpp |
Popis | Adds Format code button on leetcode to format the code using Prettier code formatter |
Velikost souboru | 2.42 MB |
Počet instalací | 5,832 |
Aktuální Verze | 1.9 |
Poslední Aktualizace | 2023-12-25 |
Datum Vydání | 2020-12-27 |
Hodnocení | 4.28/5 Celkem 29 Hodnocení |
Vývojář | Madhur Ahuja |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://madhur.co.in |
URL Stránky Nápovědy | https://github.com/madhur/leetcode-format-chrome-extension/issues |
URL Stránky Zásad Ochrany Soukromí | https://www.madhur.co.in/leetcode-format.html |
Podporované Jazyky | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Leetcode format", "version": "1.9", "manifest_version": 3, "description": "Adds Format code button on leetcode to format the code using Prettier code formatter", "homepage_url": "https:\/\/github.com\/madhur\/leetcode-format-chrome-extension", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "https:\/\/*.leetcode.com\/*", "https:\/\/*.leetcode.cn\/*" ] } ], "web_accessible_resources": [ { "resources": [ "dart-style.js", "standalone.js", "parser-babel.mjs", "parser-typescript.mjs", "parser-java.js", "beautify.js", "script.js" ], "matches": [ "https:\/\/*.leetcode.com\/*", "https:\/\/*.leetcode.cn\/*" ] } ] } |