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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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

PyQuickie 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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\/*"
    ]
}