Leetcode Mask

Stop doubting yourself. Hide difficulty level of Leetcode problems and conquer them with new vigor

Leetcode Mask là gì?

Leetcode Mask là một tiện ích mở rộng Chrome được phát triển bởi panhalkar.shreyas, và tính năng chính của nó là "Stop doubting yourself. Hide difficulty level of Leetcode problems and conquer them with new vigor".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Leetcode Mask

Tải xuống các tệp mở rộng Leetcode Mask dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        How many times have you choked or given up on a Leetcode problem early only because it was tagged as "Hard"? This extension allows you to hide the difficulty level of problems so that you can attack every problem with the same vigor.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Leetcode Mask Leetcode Mask
ID nmgainefgbnakmdojhcnmceaogankngk
URL Chính Thức https://chromewebstore.google.com/detail/leetcode-mask/nmgainefgbnakmdojhcnmceaogankngk
Mô tả Stop doubting yourself. Hide difficulty level of Leetcode problems and conquer them with new vigor
Kích Thước Tệp 78.31 KB
Số Lần Cài Đặt 213
Phiên Bản Hiện Tại 0.3
Cập Nhật Lần Cuối 2019-04-15
Ngày Phát Hành 2019-04-15
Đánh Giá 3.25/5 Tổng số 12 Đánh Giá
Nhà Phát Triển panhalkar.shreyas
Loại Thanh Toán free
Trang Web Mở Rộng https://thegreatheisenberg.github.io
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Leetcode Mask",
    "description": "Stop doubting yourself. Hide difficulty level of Leetcode problems and conquer them with new vigor",
    "version": "0.3",
    "background": {
        "scripts": [
            "js\/jquery.js",
            "js\/jquery-watch.min.js",
            "js\/background.js"
        ]
    },
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_title": "Leetcode Mask",
        "default_icon": "assets\/mask_16.png",
        "default_popup": "options.html"
    },
    "icons": {
        "16": "assets\/mask_16.png",
        "48": "assets\/mask_48.png",
        "128": "assets\/mask_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/leetcode.com\/problemset\/*",
                "https:\/\/leetcode.com\/problemset\/*",
                "http:\/\/leetcode.com\/problems\/*",
                "https:\/\/leetcode.com\/problems\/*",
                "https:\/\/leetcode.com\/tag\/*",
                "http:\/\/leetcode.com\/tag\/*",
                "https:\/\/leetcode.com\/company\/*",
                "http:\/\/leetcode.com\/company\/*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/jquery-watch.min.js",
                "js\/background.js"
            ]
        }
    ],
    "manifest_version": 2
}