LeetCode Python Assistant

Makes your Python development more efficient on LeetCode.

What is LeetCode Python Assistant?

LeetCode Python Assistant is a Chrome extension developed by fwuensche, and its main feature is "Makes your Python development more efficient on LeetCode.".

Extension Screenshots

screenshot
screenshot

Download LeetCode Python Assistant Extension CRX File

Download LeetCode Python Assistant extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name LeetCode Python Assistant LeetCode Python Assistant
ID ancmjhdhodjnghpopbhlihpggbgommgk
Official URL https://chrome.google.com/webstore/detail/leetcode-python-assistant/ancmjhdhodjnghpopbhlihpggbgommgk
Description Makes your Python development more efficient on LeetCode.
File Size 213 KB
Installation Count 213
Current Version 0.1.0
Last Updated 2018-09-18
Publish Date 2018-09-18
Rating 5.00/5 Total 1 Ratings
Developer fwuensche
Payment Type free
Extension Website http://github.com/fwuensche/leetcode-chrome-extension
Help Page URL http://github.com/fwuensche/leetcode-chrome-extension
Supported Languages 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
}