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 |
官方網址 | 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 } |