LeetCode Python Assistant

Makes your Python development more efficient on LeetCode.

ما هو LeetCode Python Assistant؟

LeetCode Python Assistant هو إضافة Chrome تم تطويرها بواسطة fwuensche، والميزة الرئيسية لها هي "Makes your Python development more efficient on LeetCode.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة LeetCode Python Assistant

قم بتنزيل ملفات الامتداد LeetCode Python Assistant بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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
}