Leetcode Filter
Filter Leetcode questions based on difficulty
Co to jest Leetcode Filter?
Leetcode Filter to rozszerzenie Chrome opracowane przez joyeshkakkar, a jego główną funkcją jest „Filter Leetcode questions based on difficulty”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Leetcode Filter
Pobierz pliki rozszerzeń Leetcode Filter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Filter Leetcode questions based on difficulty(Easy, Medium, Hard) and if they are Locked.
Podstawowe informacje o rozszerzeniu
Nazwa | Leetcode Filter |
ID | ccggononkibenbebjpjgaholancgmkal |
Oficjalny URL | https://chromewebstore.google.com/detail/leetcode-filter/ccggononkibenbebjpjgaholancgmkal |
Opis | Filter Leetcode questions based on difficulty |
Rozmiar pliku | 149 KB |
Liczba instalacji | 19 |
Aktualna Wersja | 0.1 |
Ostatnia Aktualizacja | 2017-01-10 |
Data Publikacji | 2017-01-09 |
Ocena | 3.00/5 Łącznie 2 Oceny |
Deweloper | joyeshkakkar |
Typ Płatności | free |
Obsługiwane Języki | 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 } |