LeetPlug

This extension adds tracking features to the LeetCode interface.

Cos'è LeetPlug?

LeetPlug è un'estensione di Chrome sviluppata da leetplug, e la sua funzione principale è "This extension adds tracking features to the LeetCode interface.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione LeetPlug

Scarica i file di estensione LeetPlug 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 is a browser extension that is able to interact with LeetCode official site. It can  track the activities on each problem and all the related events: submissions, time spent coding the solution, repetitions of a problem.                    

Informazioni di Base sull'Estensione

Nome LeetPlug LeetPlug
ID mcpaohflldejneeahigainahjenkgmef
URL Ufficiale https://chromewebstore.google.com/detail/leetplug/mcpaohflldejneeahigainahjenkgmef
Descrizione This extension adds tracking features to the LeetCode interface.
Dimensione del File 45.18 KB
Conteggio Installazioni 1,358
Versione Corrente 1.1.1
Ultimo Aggiornamento 2020-08-21
Data di Pubblicazione 2020-07-26
Valutazione 4.25/5 Totale 12 Valutazioni
Sviluppatore leetplug
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://leetplug.azurewebsites.net
URL della Pagina della Politica sulla Privacy https://leetplug.azurewebsites.net/static/pages/policy.html
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "LeetPlug",
    "description": "This extension adds tracking features to the LeetCode interface.",
    "version": "1.1.1",
    "icons": {
        "16": "images\/brain16.png",
        "24": "images\/brain24.png",
        "32": "images\/brain32.png",
        "128": "images\/brain128.png"
    },
    "browser_action": {
        "default_icon": "images\/brain24.png",
        "default_popup": "src\/popup.html"
    },
    "permissions": [
        "storage",
        "*:\/\/leetplug.azurewebsites.net\/*"
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/leetcode.com\/problems\/*"
            ],
            "run_at": "document_start",
            "js": [
                "thirdParty\/jquery-3.5.1.slim.min.js",
                "src\/problemsScript.js"
            ]
        }
    ]
}