PyQuickie

A python problem provider with a built in Idle you can use anywhere in the Web. Hassle Free and Easy to use

PyQuickie क्या है?

PyQuickie Jhay Pace द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A python problem provider with a built in Idle you can use anywhere in the Web. Hassle Free and Easy to use"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में PyQuickie एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        What is . Its a  chrome extension I made for fun  where you can practice your python coding skills easily and hassle free. No login recquired with just one click you can improve your coding skills and problem solving skills  while still enjoy browsing through facebook and other web activities.

Features:
-Importing Python builtin Modules Work
-working python IDLE
-Python keywords highlighting
-Python Tabbing Feature in textarea
 -Questions are ranked by level of difficulty: easy, medium, and hard. (Randomize)                    

एक्सटेंशन की मूल जानकारी

नाम PyQuickie PyQuickie
ID okpdnfgpbpifbncoleieajiblmebbkci
आधिकारिक URL https://chromewebstore.google.com/detail/pyquickie/okpdnfgpbpifbncoleieajiblmebbkci
विवरण A python problem provider with a built in Idle you can use anywhere in the Web. Hassle Free and Easy to use
फ़ाइल का आकार 646 KB
स्थापना संख्या 268
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2021-07-06
प्रकाशन तिथि 2021-07-05
रेटिंग 4.75/5 कुल 4 रेटिंग्स
डेवलपर Jhay Pace
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PyQuickie",
    "manifest_version": 2,
    "version": "1.0.1",
    "description": "A python problem provider with a built in Idle you can use anywhere in the Web. Hassle Free and Easy to use",
    "icons": {
        "16": "logo2.png",
        "48": "logo2.png",
        "128": "logo2.png"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "browser_action": {
        "default_icon": "logo2.png",
        "default_title": "paCEE code editor"
    },
    "background": {
        "scripts": [
            ".\/jquery.js",
            "background.js"
        ]
    },
    "permissions": [
        "contextMenus"
    ],
    "web_accessible_resources": [
        "*.html",
        "\/static\/*"
    ]
}