Leetcode Mask
Stop doubting yourself. Hide difficulty level of Leetcode problems and conquer them with new vigor
Cos'è Leetcode Mask?
Leetcode Mask è un'estensione di Chrome sviluppata da panhalkar.shreyas, e la sua funzione principale è "Stop doubting yourself. Hide difficulty level of Leetcode problems and conquer them with new vigor".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Leetcode Mask
Scarica i file di estensione Leetcode Mask in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Leetcode Mask |
ID | nmgainefgbnakmdojhcnmceaogankngk |
URL Ufficiale | https://chromewebstore.google.com/detail/leetcode-mask/nmgainefgbnakmdojhcnmceaogankngk |
Descrizione | Stop doubting yourself. Hide difficulty level of Leetcode problems and conquer them with new vigor |
Dimensione del File | 78.31 KB |
Conteggio Installazioni | 213 |
Versione Corrente | 0.3 |
Ultimo Aggiornamento | 2019-04-15 |
Data di Pubblicazione | 2019-04-15 |
Valutazione | 3.25/5 Totale 12 Valutazioni |
Sviluppatore | panhalkar.shreyas |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://thegreatheisenberg.github.io |
Lingue Supportate | 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 } |