PyQuickie

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

What is PyQuickie?

PyQuickie is a Chrome extension developed by Jhay Pace, and its main feature is "A python problem provider with a built in Idle you can use anywhere in the Web. Hassle Free and Easy to use".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download PyQuickie Extension CRX File

Download PyQuickie 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

                        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)                    

Extension Basic Information

Name PyQuickie PyQuickie
ID okpdnfgpbpifbncoleieajiblmebbkci
Official URL https://chromewebstore.google.com/detail/pyquickie/okpdnfgpbpifbncoleieajiblmebbkci
Description A python problem provider with a built in Idle you can use anywhere in the Web. Hassle Free and Easy to use
File Size 646 KB
Installation Count 268
Current Version 1.0.1
Last Updated 2021-07-06
Publish Date 2021-07-05
Rating 4.75/5 Total 4 Ratings
Developer Jhay Pace
Email [email protected]
Payment Type free
Supported Languages 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\/*"
    ]
}