Leetcode Mask

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

什么是Leetcode Mask?

Leetcode Mask是由panhalkar.shreyas开发的Chrome扩展程序,该扩展的主要功能是“Stop doubting yourself. Hide difficulty level of Leetcode problems and conquer them with new vigor”。

扩展截图

screenshot

下载Leetcode Mask扩展crx文件

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

扩展使用说明

                        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.                    

扩展基本信息

名称 Leetcode Mask Leetcode Mask
ID nmgainefgbnakmdojhcnmceaogankngk
官方URL https://chromewebstore.google.com/detail/leetcode-mask/nmgainefgbnakmdojhcnmceaogankngk
简介 Stop doubting yourself. Hide difficulty level of Leetcode problems and conquer them with new vigor
文件大小 78.31 KB
安装次数 213
当前版本 0.3
更新时间 2019-04-15
上架时间 2019-04-15
评分 3.25/5 共12次评分
开发者 panhalkar.shreyas
付费类型 free
扩展官网 https://thegreatheisenberg.github.io
支持的语言 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
}