LeetCode Python Assistant

Makes your Python development more efficient on LeetCode.

LeetCode Python Assistant là gì?

LeetCode Python Assistant là một tiện ích mở rộng Chrome được phát triển bởi fwuensche, và tính năng chính của nó là "Makes your Python development more efficient on LeetCode.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng LeetCode Python Assistant

Tải xuống các tệp mở rộng LeetCode Python Assistant dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên LeetCode Python Assistant LeetCode Python Assistant
ID ancmjhdhodjnghpopbhlihpggbgommgk
URL Chính Thức https://chrome.google.com/webstore/detail/leetcode-python-assistant/ancmjhdhodjnghpopbhlihpggbgommgk
Mô tả Makes your Python development more efficient on LeetCode.
Kích Thước Tệp 213 KB
Số Lần Cài Đặt 213
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2018-09-18
Ngày Phát Hành 2018-09-18
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển fwuensche
Loại Thanh Toán free
Trang Web Mở Rộng http://github.com/fwuensche/leetcode-chrome-extension
URL Trang Trợ Giúp http://github.com/fwuensche/leetcode-chrome-extension
Ngôn Ngữ Được Hỗ Trợ 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
}