Leetcode format

Adds Format code button on leetcode to format the code using Prettier code formatter

Leetcode formatとは何ですか?

Leetcode formatはMadhur Ahujaによって開発されたChromeの拡張機能で、その主な機能は「Adds Format code button on leetcode to format the code using Prettier code formatter」です。

拡張機能のスクリーンショット

screenshot
screenshot

Leetcode format拡張機能のCRXファイルをダウンロード

Leetcode format拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Leetcode format Leetcode format
ID imogghebhifnnlgogigikjecilkicfpp
公式URL https://chromewebstore.google.com/detail/leetcode-format/imogghebhifnnlgogigikjecilkicfpp
説明 Adds Format code button on leetcode to format the code using Prettier code formatter
ファイルサイズ 2.42 MB
インストール数 5,832
現在のバージョン 1.9
最終更新日 2023-12-25
公開日 2020-12-27
評価 4.28/5 合計 29 レビュー
開発者 Madhur Ahuja
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://madhur.co.in
ヘルプページのURL https://github.com/madhur/leetcode-format-chrome-extension/issues
プライバシーポリシーページのURL https://www.madhur.co.in/leetcode-format.html
対応言語 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\/*"
            ]
        }
    ]
}