LeetPlug

This extension adds tracking features to the LeetCode interface.

什么是LeetPlug?

LeetPlug是由leetplug开发的Chrome扩展程序,该扩展的主要功能是“This extension adds tracking features to the LeetCode interface.”。

扩展截图

screenshot
screenshot

下载LeetPlug扩展crx文件

下载LeetPlug扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
            ]
        }
    ]
}