Leetcode Click to Hide Difficulty

This extension allows user to hide difficulty level in leetcode.

什么是Leetcode Click to Hide Difficulty?

Leetcode Click to Hide Difficulty是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“This extension allows user to hide difficulty level in leetcode.”。

下载Leetcode Click to Hide Difficulty扩展crx文件

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

扩展使用说明

                        This extension enable you to hide difficulty level in Leetcode. 
Just install the extension, and click on it whenever you are on Leetcode, and the difficulty level will disappear.                    

扩展基本信息

名称 Leetcode Click to Hide Difficulty Leetcode Click to Hide Difficulty
ID iphbgefdkepijabekiohipokmoceddfn
官方URL https://chromewebstore.google.com/detail/leetcode-click-to-hide-di/iphbgefdkepijabekiohipokmoceddfn
简介 This extension allows user to hide difficulty level in leetcode.
文件大小 5.46 KB
安装次数 20
当前版本 1.1
更新时间 2017-12-25
上架时间 2017-12-25
评分 3.00/5 共2次评分
开发者 Unknown
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Leetcode Click to Hide Difficulty",
    "description": "This extension allows user to hide difficulty level in leetcode.",
    "version": "1.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "http:\/\/www.leetcode.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.leetcode.com\/*"
            ],
            "js": [
                "popup.js"
            ]
        }
    ]
}