Leetcode format

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

Τι είναι το Leetcode format;

Το Leetcode format είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Madhur Ahuja, και η κύρια λειτουργία του είναι "Adds Format code button on leetcode to format the code using Prettier code formatter".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Leetcode format

Λήψη αρχείων επέκτασης 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
Ηλεκτρονικό ταχυδρομείο [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\/*"
            ]
        }
    ]
}