LeetPlug

This extension adds tracking features to the LeetCode interface.

Wat is LeetPlug?

LeetPlug is een Chrome-extensie ontwikkeld door leetplug, en de belangrijkste functie is "This extension adds tracking features to the LeetCode interface.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie LeetPlug

Download LeetPlug-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam LeetPlug LeetPlug
ID mcpaohflldejneeahigainahjenkgmef
Officiële URL https://chromewebstore.google.com/detail/leetplug/mcpaohflldejneeahigainahjenkgmef
Beschrijving This extension adds tracking features to the LeetCode interface.
Bestandsgrootte 45.18 KB
Aantal Installaties 1,358
Huidige Versie 1.1.1
Laatst Bijgewerkt 2020-08-21
Publicatiedatum 2020-07-26
Beoordeling 4.25/5 Totaal 12 Beoordelingen
Ontwikkelaar leetplug
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://leetplug.azurewebsites.net
URL van de Privacybeleid Pagina https://leetplug.azurewebsites.net/static/pages/policy.html
Ondersteunde Talen 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"
            ]
        }
    ]
}