Leetcode Filter
Filter Leetcode questions based on difficulty
Что такое Leetcode Filter?
Leetcode Filter - это расширение Chrome, разработанное joyeshkakkar, и его основная функция - "Filter Leetcode questions based on difficulty".
Снимки экрана расширения
Скачать файл CRX расширения Leetcode Filter
Скачайте файлы расширений Leetcode Filter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Filter Leetcode questions based on difficulty(Easy, Medium, Hard) and if they are Locked. Основная информация о расширении
| Название | |
| ID | ccggononkibenbebjpjgaholancgmkal |
| Официальный URL | https://chromewebstore.google.com/detail/leetcode-filter/ccggononkibenbebjpjgaholancgmkal |
| Описание | Filter Leetcode questions based on difficulty |
| Размер файла | 149 KB |
| Количество установок | 19 |
| Текущая Версия | 0.1 |
| Последнее Обновление | 2017-01-10 |
| Дата публикации | 2017-01-09 |
| Рейтинг | 3.00/5 Всего 2 оценок |
| Разработчик | joyeshkakkar |
| Тип оплаты | free |
| Поддерживаемые языки | 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
} | |