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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 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 ของส่วนขยาย PyQuickie

ดาวน์โหลดไฟล์ส่วนขยาย PyQuickie ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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\/*"
    ]
}