LeetPlug

This extension adds tracking features to the LeetCode interface.

What is LeetPlug?

LeetPlug is a Chrome extension developed by leetplug, and its main feature is "This extension adds tracking features to the LeetCode interface.".

Extension Screenshots

screenshot
screenshot

Download LeetPlug Extension CRX File

Download LeetPlug extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name LeetPlug LeetPlug
ID mcpaohflldejneeahigainahjenkgmef
Official URL https://chromewebstore.google.com/detail/leetplug/mcpaohflldejneeahigainahjenkgmef
Description This extension adds tracking features to the LeetCode interface.
File Size 45.18 KB
Installation Count 1,358
Current Version 1.1.1
Last Updated 2020-08-21
Publish Date 2020-07-26
Rating 4.25/5 Total 12 Ratings
Developer leetplug
Email [email protected]
Payment Type free
Extension Website https://leetplug.azurewebsites.net
Privacy Policy Page URL https://leetplug.azurewebsites.net/static/pages/policy.html
Supported Languages 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"
            ]
        }
    ]
}