LeetPlug

This extension adds tracking features to the LeetCode interface.

Apa itu LeetPlug?

LeetPlug adalah ekstensi Chrome yang dikembangkan oleh leetplug, dan fitur utamanya adalah "This extension adds tracking features to the LeetCode interface.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi LeetPlug

Unduh file ekstensi LeetPlug dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama LeetPlug LeetPlug
ID mcpaohflldejneeahigainahjenkgmef
URL Resmi https://chromewebstore.google.com/detail/leetplug/mcpaohflldejneeahigainahjenkgmef
Deskripsi This extension adds tracking features to the LeetCode interface.
Ukuran File 45.18 KB
Jumlah Instalasi 1,358
Versi Saat Ini 1.1.1
Terakhir Diperbarui 2020-08-21
Tanggal Publikasi 2020-07-26
Penilaian 4.25/5 Total 12 Penilaian
Pengembang leetplug
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://leetplug.azurewebsites.net
URL Halaman Kebijakan Privasi https://leetplug.azurewebsites.net/static/pages/policy.html
Bahasa yang Didukung 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"
            ]
        }
    ]
}