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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}