LeetHub v3

Automatically integrate your Leetcode & GeeksforGeeks submissions to GitHub

Что такое LeetHub v3?

LeetHub v3 - это расширение Chrome, разработанное rheinz, и его основная функция - "Automatically integrate your Leetcode & GeeksforGeeks submissions to GitHub".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения LeetHub v3

Скачайте файлы расширений LeetHub v3 в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Automatically integrate your Leetcode & GeeksforGeeks submissions to GitHub

What is LeetHub v3?
A chrome extension that automatically pushes your code to GitHub when you pass all tests on a Leetcode problem. Re-built from the original popular LeetHub extension, it improves and expands upon the original, now featuring support for the new Leetcode UI. 

Why LeetHub?
1. Recruiters *want* to see your contributions to the Open Source community, be it through side projects, solving algorithms/data-structures, or contributing to existing OS projects. 
As of now, GitHub is developers' #1 portfolio. LeetHub just makes it much easier (autonomous) to keep track of progress and contributions on the largest network of engineering community, GitHub.
2. There's no easy way of accessing your leetcode problems in one place! 
Moreover, pushing code manually to GitHub from Leetcode is very time consuming. So, why not just automate it entirely without spending a SINGLE additional second on it?

How does LeetHub work?
After installing the extension and launching LeetHub, it's as simple as:
1. Click on "authorize with GitHub" button to automatically set up your account with LeetHub.
2. Setup an existing/new repository with LeetHub (private by default) by clicking "Get Started" button.
3. And that's it 🎉 ...begin Leetcoding! To view your progress, simply click on the LeetHub icon!

BONUS: Star LeetHub v3 on GitHub for further development of features @ https://github.com/raphaelheinz/LeetHub-3.0

Let's see you ACE that coding interview!                    

Основная информация о расширении

Название LeetHub v3 LeetHub v3
ID kdkgpjpenaeoodajljkflmlnkoihkmda
Официальный URL https://chromewebstore.google.com/detail/leethub-v3/kdkgpjpenaeoodajljkflmlnkoihkmda
Описание Automatically integrate your Leetcode & GeeksforGeeks submissions to GitHub
Размер файла 776 KB
Количество установок 1,000
Текущая Версия 0.0.8
Последнее Обновление 2024-02-07
Дата публикации 2023-12-04
Рейтинг 3.20/5 Всего 5 оценок
Разработчик rheinz
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/raphaelheinz/LeetHub-3.0/
URL страницы политики конфиденциальности https://www.privacypolicies.com/live/0154c630-c3dd-4086-9262-627ff199a53e
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "LeetHub v3",
    "description": "Automatically integrate your Leetcode & GeeksforGeeks submissions to GitHub",
    "homepage_url": "https:\/\/github.com\/raphaelheinz\/LeetHub-3.0",
    "version": "0.0.8",
    "author": "Raphael Heinz",
    "action": {
        "default_icon": "assets\/thumbnail.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "assets\/thumbnail.png",
        "48": "assets\/thumbnail.png",
        "128": "assets\/thumbnail.png"
    },
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "permissions": [
        "unlimitedStorage",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/leetcode.com\/*",
                "https:\/\/github.com\/*",
                "https:\/\/practice.geeksforgeeks.org\/*"
            ],
            "js": [
                "scripts\/leetcode.js",
                "scripts\/authorize.js",
                "scripts\/gfg.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}