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
官方網址 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
電子郵箱 [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\/*"
            ]
        }
    ]
}