Leetcode format

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

Leetcode format क्या है?

Leetcode format Madhur Ahuja द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds Format code button on leetcode to format the code using Prettier code formatter"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Leetcode format एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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\/*"
            ]
        }
    ]
}