Leetcode Filter
Filter Leetcode questions based on difficulty
Wat is Leetcode Filter?
Leetcode Filter is een Chrome-extensie ontwikkeld door joyeshkakkar, en de belangrijkste functie is "Filter Leetcode questions based on difficulty".
Extensie Screenshots
Download het CRX-bestand van de extensie Leetcode Filter
Download Leetcode Filter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Filter Leetcode questions based on difficulty(Easy, Medium, Hard) and if they are Locked. Basisinformatie over de Extensie
| Naam | |
| ID | ccggononkibenbebjpjgaholancgmkal |
| Officiële URL | https://chromewebstore.google.com/detail/leetcode-filter/ccggononkibenbebjpjgaholancgmkal |
| Beschrijving | Filter Leetcode questions based on difficulty |
| Bestandsgrootte | 149 KB |
| Aantal Installaties | 19 |
| Huidige Versie | 0.1 |
| Laatst Bijgewerkt | 2017-01-10 |
| Publicatiedatum | 2017-01-09 |
| Beoordeling | 3.00/5 Totaal 2 Beoordelingen |
| Ontwikkelaar | joyeshkakkar |
| Betalingswijze | free |
| Ondersteunde Talen | 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
} | |