LeetSync - Leetcode to Github Synchronizer

LeetSync is a Chrome extension that enables you to sync your LeetCode problem submissions with a selected GitHub repository.

LeetSync - Leetcode to Github Synchronizerคืออะไร?

LeetSync - Leetcode to Github Synchronizer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ahmed Ghonem และคุณลักษณะหลักของมันคือ "LeetSync is a Chrome extension that enables you to sync your LeetCode problem submissions with a selected GitHub repository."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย LeetSync - Leetcode to Github Synchronizer

ดาวน์โหลดไฟล์ส่วนขยาย LeetSync - Leetcode to Github Synchronizer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        LeetSync is a Chrome extension that enables you to sync your LeetCode problem submissions with a selected GitHub repository. With this extension, you can easily track your coding progress and share your solutions with others on GitHub.

🤔 Why LeetSync?
1. LeetSync helps you save, review, and share your LeetCode solutions with others by submitting your solutions into your selected Github repository in a second.
2. LeetSync works on any LeetCode interface.
3. LeetSync help you motivate yourself by challenging yourself day after day
4. LeetSync saves a lot of time if you wanted to push your submissions manually to Github each time you solve an issue


⚙️ How it Works

LeetSync utilizes the LeetCode API to fetch your submission data and the GitHub API to create a new file or update an existing one in your selected repository with the option to specify different subdirectories for your solutions.


🚀 Get Started

To configure LeetSync, follow these steps:
1. Click on the extension icon in your Chrome toolbar.
2. In the popup window, Give Access via Github.
3. Login via LeetCode (Optional and might be automatically skipped if already logged in)
4. Select the repository you want to sync your submissions to.
5. Start solving some problems 🔥

🫶 Contributing
Contributions are welcome! If you want to contribute to the project, please follow the contributing guidelines using this link: https://github.com/3ba2ii/LeetSync/blob/main/CONTRIBUTING.md

⭐️ Star the project on Github and help us reach more and more people
https://github.com/3ba2ii/LeetSync                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ LeetSync - Leetcode to Github Synchronizer LeetSync - Leetcode to Github Synchronizer
ID ppkbejeolfcbaomanmbpjdbkfcjfhjnd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/leetsync-leetcode-to-gith/ppkbejeolfcbaomanmbpjdbkfcjfhjnd
คำอธิบาย LeetSync is a Chrome extension that enables you to sync your LeetCode problem submissions with a selected GitHub repository.
ขนาดไฟล์ 5.57 MB
จำนวนการติดตั้ง 6,000
เวอร์ชันปัจจุบัน 0.0.5
อัปเดตครั้งล่าสุด 2024-02-12
วันที่เผยแพร่ 2023-04-01
คะแนน 4.13/5 รวมทั้งหมด 30 คะแนน
ผู้พัฒนา Ahmed Ghonem
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/3ba2ii/LeetSync
URL หน้าช่วยเหลือ https://github.com/3ba2ii/LeetSync/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LeetSync - Leetcode to Github Synchronizer",
    "description": "LeetSync is a Chrome extension that enables you to sync your LeetCode problem submissions with a selected GitHub repository.",
    "version": "0.0.5",
    "manifest_version": 3,
    "action": {
        "default_popup": "index.html",
        "default_title": "LeetSync"
    },
    "icons": {
        "16": "logo192.png",
        "48": "logo192.png",
        "128": "logo192.png",
        "256": "logo256.png",
        "512": "logo512.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "cookies",
        "unlimitedStorage",
        "webRequest"
    ],
    "host_permissions": [
        "https:\/\/leetcode.com\/*"
    ],
    "background": {
        "service_worker": "static\/scripts\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "static\/scripts\/authorize-github.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/leetcode.com\/problems\/*"
            ],
            "js": [
                "static\/scripts\/leetcode.js"
            ],
            "run_at": "document_idle"
        }
    ]
}