PyQuickie

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

PyQuickie là gì?

PyQuickie là một tiện ích mở rộng Chrome được phát triển bởi Jhay Pace, và tính năng chính của nó là "A python problem provider with a built in Idle you can use anywhere in the Web. Hassle Free and Easy to use".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng PyQuickie

Tải xuống các tệp mở rộng PyQuickie dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên PyQuickie PyQuickie
ID okpdnfgpbpifbncoleieajiblmebbkci
URL Chính Thức https://chromewebstore.google.com/detail/pyquickie/okpdnfgpbpifbncoleieajiblmebbkci
Mô tả A python problem provider with a built in Idle you can use anywhere in the Web. Hassle Free and Easy to use
Kích Thước Tệp 646 KB
Số Lần Cài Đặt 268
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2021-07-06
Ngày Phát Hành 2021-07-05
Đánh Giá 4.75/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Jhay Pace
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}