CodeSyncer

This Chrome extension enables users to synchronize their LeetCode and GFG submissions to their GitHub repository effortlessly.

Τι είναι το CodeSyncer;

Το CodeSyncer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Mustafiz Kaifee, και η κύρια λειτουργία του είναι "This Chrome extension enables users to synchronize their LeetCode and GFG submissions to their GitHub repository effortlessly.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Exciting news! 🤩
CodeSyncer has been integrated with GeeksForGeeks, enabling the ability to automatically push your GFG submissions to your GitHub repository.

The CodeSyncer Chrome extension allows users to seamlessly sync their LeetCode submissions to their GitHub repository with just a few clicks. This extension eliminates the need for users to manually copy and paste their code from LeetCode to GitHub, saving them time and effort. With this extension, users can easily showcase their coding skills and build their portfolios on GitHub.

Steps to follow
1. Go to the "Problem" tab in Leetcode and select a question from LeetCode.
2. Wait for the message "Successfully retrieved the question's details" to appear.
3. Choose your preferred programming language and write your code.
4. Click the "Submit" button and wait for the message "Your code has been successfully uploaded to GitHub" to appear next to the "Console" button.

NOTE:
To update your code, simply go to the "Description" tab, refresh the page, and follow the same steps as above.


Plus, stay tuned – I plan to expand CodeSyncer to other platforms like GFG, CodingNinja, and more! 
Best of all, the code is open-source on GitHub, so if you have any ideas for new features, bug fixes, or other contributions, I'd love to hear from you.                    

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

Όνομα CodeSyncer CodeSyncer
ID cckfbmeiclkanjojbhblebmdlkibjnkl
Επίσημο URL https://chromewebstore.google.com/detail/codesyncer/cckfbmeiclkanjojbhblebmdlkibjnkl
Περιγραφή This Chrome extension enables users to synchronize their LeetCode and GFG submissions to their GitHub repository effortlessly.
Μέγεθος Αρχείου 10.57 MB
Αριθμός Εγκαταστάσεων 50
Τρέχουσα Έκδοση 1.1.2
Τελευταία Ενημέρωση 2023-08-29
Ημερομηνία Δημοσίευσης 2023-03-23
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Mustafiz Kaifee
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "CodeSyncer",
    "description": "This Chrome extension enables users to synchronize their LeetCode and GFG submissions to their GitHub repository effortlessly.",
    "version": "1.1.2",
    "author": "Mustafiz Kaifee",
    "homepage_url": "https:\/\/github.com\/Mustafiz04",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/static\/images\/logo1.PNG",
            "48": "\/static\/images\/logo1.PNG",
            "128": "\/static\/images\/logo1.PNG"
        }
    },
    "icons": {
        "16": "\/static\/images\/logo1.PNG",
        "48": "\/static\/images\/logo1.PNG",
        "128": "\/static\/images\/logo1.PNG"
    },
    "background": {
        "service_worker": "\/scripts\/background.js"
    },
    "permissions": [
        "unlimitedStorage",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/github.com\/*",
        "https:\/\/api.github.com\/*",
        "https:\/\/leetcode.com\/*",
        "https:\/\/practice.geeksforgeeks.org\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "scripts\/leetcode.js"
            ],
            "matches": [
                "https:\/\/leetcode.com\/*"
            ],
            "run_at": "document_idle"
        },
        {
            "js": [
                "scripts\/github.js"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "run_at": "document_idle"
        },
        {
            "js": [
                "scripts\/geeksforgeeks.js"
            ],
            "matches": [
                "https:\/\/practice.geeksforgeeks.org\/*"
            ],
            "run_at": "document_idle"
        }
    ]
}