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.”。

扩展截图

screenshot
screenshot

下载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                    

扩展基本信息

名称 LeetCode Python Assistant LeetCode Python Assistant
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
}