LeetCode Tracker

Sync LeetCode's submissions with a GitHub repository

Τι είναι το LeetCode Tracker;

Το LeetCode Tracker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον jeff.gbeho, και η κύρια λειτουργία του είναι "Sync LeetCode's submissions with a GitHub repository".

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

screenshot
screenshot
screenshot

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

Λήψη αρχείων επέκτασης LeetCode Tracker σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        LeetCode Tracker is your go-to companion for effortlessly managing and showcasing your LeetCode submissions on GitHub. Tailored for the new LeetCode interface, this Chrome extension streamlines the process of syncing your LeetCode solutions with a GitHub repository, ensuring a seamless integration between your coding journey and your GitHub portfolio.

Key Features:

1. Automated GitHub Sync: LeetCode Tracker automates the synchronization of your LeetCode solutions to a designated GitHub repository. No more manual hassle – focus on problem-solving, and let LeetCode Tracker handle the rest.

2. GitHub Portfolio Enhancement: Elevate your GitHub portfolio with a dedicated repository showcasing your LeetCode accomplishments. Impress recruiters by demonstrating your problem-solving skills in a centralized and organized manner.

3. Adaptable to New LeetCode UI: Designed to seamlessly integrate with the latest LeetCode user interface, LeetCode Tracker stays up-to-date, ensuring a smooth experience regardless of platform changes.

4. Efficient Problem Management: LeetCode Tracker provides a centralized hub for accessing and managing your LeetCode submissions. Track your progress effortlessly and keep your coding journey well-documented.

How to Use LeetCode Tracker:

Install and Authorize: Install the extension and effortlessly authorize it with your GitHub account.

Set Up Repository: Create a new repository or link to an existing one with a few clicks. LeetCode Tracker makes the setup process straightforward and quick.

Automated Sync: Solve LeetCode problems as usual. When you successfully pass all tests, LeetCode Tracker automatically syncs your solution to the designated GitHub repository.

GitHub Stars: Show your support by starring LeetCode Tracker on GitHub. Contribute to the ongoing development and enhancement of features.

GitHub Repository:
Star LeetCode Tracker on GitHub to stay connected and contribute to the growth of this powerful extension: GitHub Repository

Enhance your coding portfolio effortlessly with LeetCode Tracker – where coding excellence meets GitHub sophistication.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα LeetCode Tracker LeetCode Tracker
ID bnhnpmglielpbmnnhhbcfnljhijfppbm
Επίσημο URL https://chromewebstore.google.com/detail/leetcode-tracker/bnhnpmglielpbmnnhhbcfnljhijfppbm
Περιγραφή Sync LeetCode's submissions with a GitHub repository
Μέγεθος Αρχείου 1.32 MB
Αριθμός Εγκαταστάσεων 77
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2023-11-26
Ημερομηνία Δημοσίευσης 2023-11-26
Αξιολόγηση 1.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής jeff.gbeho
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LeetCode Tracker",
    "description": "Sync LeetCode's submissions with a GitHub repository",
    "version": "1.0",
    "manifest_version": 3,
    "author": "Jeffrey Gbeho",
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "assets\/logo-leetcode-tracker\/Leetcode-tracker-500.png",
        "48": "assets\/logo-leetcode-tracker\/Leetcode-tracker-500.png",
        "128": "assets\/logo-leetcode-tracker\/Leetcode-tracker-500.png"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "permissions": [
        "tabs",
        "unlimitedStorage",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/leetcode.com\/*",
                "https:\/\/github.com\/*"
            ],
            "js": [
                "scripts\/authorize.js",
                "scripts\/leetcode.js"
            ],
            "run_at": "document_idle"
        }
    ]
}