LeetCoder Pro

LeetCode Extension

Co to jest LeetCoder Pro?

LeetCoder Pro to rozszerzenie Chrome opracowane przez lc_chrome_extension, a jego główną funkcją jest „LeetCode Extension”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia LeetCoder Pro

Pobierz pliki rozszerzeń LeetCoder Pro w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        A simple LeetCode browser extension that provides software engineer interview prepers key problem submission data points. 🤗 💯

Note: In order to show data you must have submitted solutions before. To enable this extension, please log into (or register) your LeetCode account! Data refresh typically takes 1~2 seconds. 

Statistics definition
Session(# of Times Done): Two submissions count as two different sessions if they are submitted more than one day apart.
Acceptance Rate(personal): Ratio of accepted submissions to all submissions.                    

Podstawowe informacje o rozszerzeniu

Nazwa LeetCoder Pro LeetCoder Pro
ID nkjhlfmlgoadihojkbchmjebljpgiopb
Oficjalny URL https://chromewebstore.google.com/detail/leetcoder-pro/nkjhlfmlgoadihojkbchmjebljpgiopb
Opis LeetCode Extension
Rozmiar pliku 148 KB
Liczba instalacji 30
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2022-01-24
Data Publikacji 2022-01-24
Deweloper lc_chrome_extension
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/colinshenc/LeetCoder-Pro
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LeetCoder Pro",
    "description": "LeetCode Extension",
    "version": "1.0",
    "manifest_version": 3,
    "action": {
        "default_popup": "popup.html",
        "default_icon": "\/images\/logo6.png"
    },
    "permissions": [
        "cookies",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.leetcode.com\/"
    ],
    "background": {
        "service_worker": "utils.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.leetcode.com\/problemset\/*"
            ],
            "js": [
                "submission.js"
            ]
        }
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+L",
                "mac": "MacCtrl+Shift+L"
            },
            "description": "Open popup.html"
        }
    }
}