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"
            ]
        }
    ]
}