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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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\/*"
            ]
        }
    ]
}