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」です。
拡張機能のスクリーンショット
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 |
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 } |