LeetCode Python Assistant
Makes your Python development more efficient on LeetCode.
Wat is LeetCode Python Assistant?
LeetCode Python Assistant is een Chrome-extensie ontwikkeld door fwuensche, en de belangrijkste functie is "Makes your Python development more efficient on LeetCode.".
Extensie Screenshots
Download het CRX-bestand van de extensie LeetCode Python Assistant
Download LeetCode Python Assistant-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
This extension provides the user with productivity tools, such as a button for YouTube solutions, automatically filtering Python discussions, sorting them by top rated, and more.
That's pretty much it (so far), but contributions are more than welcome at https://github.com/fwuensche/leetcode-chrome-extension Basisinformatie over de Extensie
| Naam | |
| ID | ancmjhdhodjnghpopbhlihpggbgommgk |
| Officiële URL | https://chrome.google.com/webstore/detail/leetcode-python-assistant/ancmjhdhodjnghpopbhlihpggbgommgk |
| Beschrijving | Makes your Python development more efficient on LeetCode. |
| Bestandsgrootte | 213 KB |
| Aantal Installaties | 213 |
| Huidige Versie | 0.1.0 |
| Laatst Bijgewerkt | 2018-09-18 |
| Publicatiedatum | 2018-09-18 |
| Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
| Ontwikkelaar | fwuensche |
| Betalingswijze | free |
| Extensiewebsite | http://github.com/fwuensche/leetcode-chrome-extension |
| Help Pagina-URL | http://github.com/fwuensche/leetcode-chrome-extension |
| Ondersteunde Talen | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "LeetCode Python Assistant",
"description": "Makes your Python development more efficient on LeetCode.",
"version": "0.1.0",
"browser_action": {
"default_popup": "search.html",
"default_icon": "img\/lc-logo.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/leetcode.com\/problems\/*"
],
"js": [
"js\/vendor\/jquery.js",
"js\/problems.js"
]
}
],
"icons": {
"144": "img\/icon_144.png"
},
"manifest_version": 2
} | |