LeetCode Python Assistant
Makes your Python development more efficient on LeetCode.
Qu'est-ce que LeetCode Python Assistant ?
LeetCode Python Assistant est une extension Chrome développée par fwuensche, et sa fonction principale est "Makes your Python development more efficient on LeetCode.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension LeetCode Python Assistant
Téléchargez les fichiers d'extension LeetCode Python Assistant au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | ancmjhdhodjnghpopbhlihpggbgommgk |
URL Officiel | https://chrome.google.com/webstore/detail/leetcode-python-assistant/ancmjhdhodjnghpopbhlihpggbgommgk |
Description | Makes your Python development more efficient on LeetCode. |
Taille du Fichier | 213 KB |
Nombre d'Installations | 213 |
Version Actuelle | 0.1.0 |
Dernière Mise à Jour | 2018-09-18 |
Date de Publication | 2018-09-18 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | fwuensche |
Type de Paiement | free |
Site Web de l'Extension | http://github.com/fwuensche/leetcode-chrome-extension |
URL de la Page d'Aide | http://github.com/fwuensche/leetcode-chrome-extension |
Langues Prises en Charge | 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 } |