LeetPlug

This extension adds tracking features to the LeetCode interface.

LeetPlugคืออะไร?

LeetPlug เป็นส่วนขยายของ Chrome ที่พัฒนาโดย leetplug และคุณลักษณะหลักของมันคือ "This extension adds tracking features to the LeetCode interface."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย LeetPlug

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}