LeetCode Python Assistant
Makes your Python development more efficient on LeetCode.
LeetCode Python Assistantとは何ですか?
LeetCode Python Assistantはfwuenscheによって開発されたChromeの拡張機能で、その主な機能は「Makes your Python development more efficient on LeetCode.」です。
拡張機能のスクリーンショット
LeetCode Python Assistant拡張機能のCRXファイルをダウンロード
LeetCode Python Assistant拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 拡張機能の基本情報
| 名前 | |
| ID | ancmjhdhodjnghpopbhlihpggbgommgk |
| 公式URL | https://chrome.google.com/webstore/detail/leetcode-python-assistant/ancmjhdhodjnghpopbhlihpggbgommgk |
| 説明 | Makes your Python development more efficient on LeetCode. |
| ファイルサイズ | 213 KB |
| インストール数 | 213 |
| 現在のバージョン | 0.1.0 |
| 最終更新日 | 2018-09-18 |
| 公開日 | 2018-09-18 |
| 評価 | 5.00/5 合計 1 レビュー |
| 開発者 | fwuensche |
| 支払い方法 | free |
| 拡張機能のウェブサイト | http://github.com/fwuensche/leetcode-chrome-extension |
| ヘルプページのURL | http://github.com/fwuensche/leetcode-chrome-extension |
| 対応言語 | 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
} | |