LeetCode Python Assistant

Makes your Python development more efficient on LeetCode.

Co to jest LeetCode Python Assistant?

LeetCode Python Assistant to rozszerzenie Chrome opracowane przez fwuensche, a jego główną funkcją jest „Makes your Python development more efficient on LeetCode.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia LeetCode Python Assistant

Pobierz pliki rozszerzeń LeetCode Python Assistant 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

                        This extension provides the user with productivity tools, such as a button for YouTube solutions, automatically filtering Python discussions, sorting them by top rated, and more. 

That's pretty much it (so far), but contributions are more than welcome at https://github.com/fwuensche/leetcode-chrome-extension                    

Podstawowe informacje o rozszerzeniu

Nazwa LeetCode Python Assistant LeetCode Python Assistant
ID ancmjhdhodjnghpopbhlihpggbgommgk
Oficjalny URL https://chrome.google.com/webstore/detail/leetcode-python-assistant/ancmjhdhodjnghpopbhlihpggbgommgk
Opis Makes your Python development more efficient on LeetCode.
Rozmiar pliku 213 KB
Liczba instalacji 213
Aktualna Wersja 0.1.0
Ostatnia Aktualizacja 2018-09-18
Data Publikacji 2018-09-18
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper fwuensche
Typ Płatności free
Strona Rozszerzenia http://github.com/fwuensche/leetcode-chrome-extension
Adres URL Strony Pomocy http://github.com/fwuensche/leetcode-chrome-extension
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LeetCode Python Assistant",
    "description": "Makes your Python development more efficient on LeetCode.",
    "version": "0.1.0",
    "browser_action": {
        "default_popup": "search.html",
        "default_icon": "img\/lc-logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/leetcode.com\/problems\/*"
            ],
            "js": [
                "js\/vendor\/jquery.js",
                "js\/problems.js"
            ]
        }
    ],
    "icons": {
        "144": "img\/icon_144.png"
    },
    "manifest_version": 2
}