Leetcode Filter
Filter Leetcode questions based on difficulty
Cos'è Leetcode Filter?
Leetcode Filter è un'estensione di Chrome sviluppata da joyeshkakkar, e la sua funzione principale è "Filter Leetcode questions based on difficulty".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Leetcode Filter
Scarica i file di estensione Leetcode Filter 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
Filter Leetcode questions based on difficulty(Easy, Medium, Hard) and if they are Locked.
Informazioni di Base sull'Estensione
Nome | Leetcode Filter |
ID | ccggononkibenbebjpjgaholancgmkal |
URL Ufficiale | https://chromewebstore.google.com/detail/leetcode-filter/ccggononkibenbebjpjgaholancgmkal |
Descrizione | Filter Leetcode questions based on difficulty |
Dimensione del File | 149 KB |
Conteggio Installazioni | 19 |
Versione Corrente | 0.1 |
Ultimo Aggiornamento | 2017-01-10 |
Data di Pubblicazione | 2017-01-09 |
Valutazione | 3.00/5 Totale 2 Valutazioni |
Sviluppatore | joyeshkakkar |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Leetcode Filter", "description": "Filter Leetcode questions based on difficulty", "version": "0.1", "background": { "scripts": [ "jquery.js", "jquery-watch.min.js", "background.js" ] }, "permissions": [ "storage" ], "browser_action": { "default_title": "Leetcode Filters", "default_icon": "icon16.png", "default_popup": "options.html" }, "icons": { "16": "icon16.png", "48": "icon48.png" }, "content_scripts": [ { "matches": [ "http:\/\/leetcode.com\/*", "https:\/\/leetcode.com\/*" ], "js": [ "jquery.js", "jquery-watch.min.js", "background.js" ] } ], "options_ui": { "page": "options.html", "chrome_style": true }, "manifest_version": 2 } |