LeetCode Python Assistant

Makes your Python development more efficient on LeetCode.

Cos'è LeetCode Python Assistant?

LeetCode Python Assistant è un'estensione di Chrome sviluppata da fwuensche, e la sua funzione principale è "Makes your Python development more efficient on LeetCode.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione LeetCode Python Assistant

Scarica i file di estensione LeetCode Python Assistant in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome LeetCode Python Assistant LeetCode Python Assistant
ID ancmjhdhodjnghpopbhlihpggbgommgk
URL Ufficiale https://chrome.google.com/webstore/detail/leetcode-python-assistant/ancmjhdhodjnghpopbhlihpggbgommgk
Descrizione Makes your Python development more efficient on LeetCode.
Dimensione del File 213 KB
Conteggio Installazioni 213
Versione Corrente 0.1.0
Ultimo Aggiornamento 2018-09-18
Data di Pubblicazione 2018-09-18
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore fwuensche
Tipo di Pagamento free
Sito Web dell'Estensione http://github.com/fwuensche/leetcode-chrome-extension
URL della Pagina di Aiuto http://github.com/fwuensche/leetcode-chrome-extension
Lingue Supportate 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
}