LeetCode Python Assistant
Makes your Python development more efficient on LeetCode.
Vad är LeetCode Python Assistant?
LeetCode Python Assistant är en Chrome-tillägg utvecklad av fwuensche, och dess huvudfunktion är "Makes your Python development more efficient on LeetCode.".
Tilläggsskärmbilder
Ladda ner LeetCode Python Assistant-förlängningens CRX-fil
Ladda ner LeetCode Python Assistant-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | ancmjhdhodjnghpopbhlihpggbgommgk |
| Officiell webbadress | https://chrome.google.com/webstore/detail/leetcode-python-assistant/ancmjhdhodjnghpopbhlihpggbgommgk |
| Beskrivning | Makes your Python development more efficient on LeetCode. |
| Filstorlek | 213 KB |
| Antal Installationer | 213 |
| Aktuell Version | 0.1.0 |
| Senast Uppdaterad | 2018-09-18 |
| Publiceringsdatum | 2018-09-18 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | fwuensche |
| Betalningssätt | free |
| Tilläggswebbplats | http://github.com/fwuensche/leetcode-chrome-extension |
| Hjälpsida URL | http://github.com/fwuensche/leetcode-chrome-extension |
| Stödda Språk | 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
} | |