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 |
官方網址 | 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 } |