Leetcode Filter

Filter Leetcode questions based on difficulty

Leetcode Filterคืออะไร?

Leetcode Filter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย joyeshkakkar และคุณลักษณะหลักของมันคือ "Filter Leetcode questions based on difficulty"

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Leetcode Filter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Filter Leetcode questions based on difficulty(Easy, Medium, Hard) and if they are Locked.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Leetcode Filter Leetcode Filter
ID ccggononkibenbebjpjgaholancgmkal
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/leetcode-filter/ccggononkibenbebjpjgaholancgmkal
คำอธิบาย Filter Leetcode questions based on difficulty
ขนาดไฟล์ 149 KB
จำนวนการติดตั้ง 19
เวอร์ชันปัจจุบัน 0.1
อัปเดตครั้งล่าสุด 2017-01-10
วันที่เผยแพร่ 2017-01-09
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา joyeshkakkar
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Leetcode Filter",
    "description": "Filter Leetcode questions based on difficulty",
    "version": "0.1",
    "background": {
        "scripts": [
            "jquery.js",
            "jquery-watch.min.js",
            "background.js"
        ]
    },
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_title": "Leetcode Filters",
        "default_icon": "icon16.png",
        "default_popup": "options.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/leetcode.com\/*",
                "https:\/\/leetcode.com\/*"
            ],
            "js": [
                "jquery.js",
                "jquery-watch.min.js",
                "background.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "manifest_version": 2
}