LeetCode to GitHub

Automatically upload your LeetCode solutions to GitHub.

Τι είναι το LeetCode to GitHub;

Το LeetCode to GitHub είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Willisaur, και η κύρια λειτουργία του είναι "Automatically upload your LeetCode solutions to GitHub.".

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

screenshot

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

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

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

                        About
----------------------
This Chrome extension uses fetch requests and the Chrome extension API to automate uploading LeetCode solutions to your GitHub account. View on GitHub here: https://bit.ly/L2G-GH


Auth token
----------------------
A GitHub authentication token is required. This can be done by going to profile > settings > developer settings > personal access tokens > fine-grained tokens OR tokens (classic). It is recommended to ensure the token can be used to delete and create repos, see repo information, see commit/file information, and create/commit to files. This token is only stored in your Chrome account storage.


Commit file structure
----------------------
All LeetCode problems are separated by folders, and solutions are in each folder and separated by languages. To view submission statistics, look at the extended commit description.


Thank you!
----------------------
I hope this helps you boost your coding portfolio and boast your dedication to mastering technical interviews! :)
I'd love to hear about how this has helped you!
If it really helped you a lot, please consider donating to me on PayPal or connecting with me on LinkedIn/GitHub. Thank you!                    

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

Όνομα LeetCode to GitHub LeetCode to GitHub
ID nablgglcibnhlhkmgneplcejmfnfohpd
Επίσημο URL https://chromewebstore.google.com/detail/leetcode-to-github/nablgglcibnhlhkmgneplcejmfnfohpd
Περιγραφή Automatically upload your LeetCode solutions to GitHub.
Μέγεθος Αρχείου 7.66 MB
Αριθμός Εγκαταστάσεων 28
Τρέχουσα Έκδοση 2.0.7
Τελευταία Ενημέρωση 2023-09-15
Ημερομηνία Δημοσίευσης 2023-06-28
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Willisaur
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/Willisaur/LeetCode-to-GitHub
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LeetCode to GitHub",
    "description": "Automatically upload your LeetCode solutions to GitHub.",
    "version": "2.0.7",
    "manifest_version": 3,
    "action": {
        "default_popup": ".\/popup\/popup.html",
        "default_icon": ".\/icons\/icon128.png"
    },
    "options_page": ".\/options\/options.html",
    "icons": {
        "128": ".\/icons\/icon128.png",
        "48": ".\/icons\/icon48.png",
        "32": ".\/icons\/icon32.png",
        "16": ".\/icons\/icon16.png"
    },
    "permissions": [
        "background",
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "*:\/\/github.com\/*",
        "*:\/\/www.linkedin.com\/in\/willstarling\/",
        "*:\/\/paypal.me\/willisaur",
        "*:\/\/leetcode.com\/graphql\/",
        "*:\/\/api.github.com\/repos\/*",
        "*:\/\/leetcode.com\/problems\/*\/*",
        "*:\/\/leetcode.com\/submissions\/detail\/*\/check\/"
    ],
    "background": {
        "service_worker": "service-worker.js"
    }
}