LeetCode Python Assistant
Makes your Python development more efficient on LeetCode.
Was ist LeetCode Python Assistant?
LeetCode Python Assistant ist eine Chrome-Erweiterung, die von fwuensche entwickelt wurde, und ihr Hauptmerkmal ist "Makes your Python development more efficient on LeetCode.".
Erweiterungsscreenshots
LeetCode Python Assistant-Erweiterungs-CRX-Datei herunterladen
Laden Sie LeetCode Python Assistant-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ancmjhdhodjnghpopbhlihpggbgommgk |
| Offizielle URL | https://chrome.google.com/webstore/detail/leetcode-python-assistant/ancmjhdhodjnghpopbhlihpggbgommgk |
| Beschreibung | Makes your Python development more efficient on LeetCode. |
| Dateigröße | 213 KB |
| Installationsanzahl | 213 |
| Aktuelle Version | 0.1.0 |
| Letztes Update | 2018-09-18 |
| Veröffentlichungsdatum | 2018-09-18 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | fwuensche |
| Zahlungsart | free |
| Erweiterungswebsite | http://github.com/fwuensche/leetcode-chrome-extension |
| Hilfeseite URL | http://github.com/fwuensche/leetcode-chrome-extension |
| Unterstützte Sprachen | 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
} | |