LeetPlug

This extension adds tracking features to the LeetCode interface.

LeetPlug क्या है?

LeetPlug leetplug द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension adds tracking features to the LeetCode interface."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में LeetPlug एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम LeetPlug LeetPlug
ID mcpaohflldejneeahigainahjenkgmef
आधिकारिक URL https://chromewebstore.google.com/detail/leetplug/mcpaohflldejneeahigainahjenkgmef
विवरण This extension adds tracking features to the LeetCode interface.
फ़ाइल का आकार 45.18 KB
स्थापना संख्या 1,358
वर्तमान संस्करण 1.1.1
अंतिम अपडेट 2020-08-21
प्रकाशन तिथि 2020-07-26
रेटिंग 4.25/5 कुल 12 रेटिंग्स
डेवलपर leetplug
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://leetplug.azurewebsites.net
गोपनीयता नीति पृष्ठ URL https://leetplug.azurewebsites.net/static/pages/policy.html
समर्थित भाषाएँ 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"
            ]
        }
    ]
}