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文件

下載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
官方網址 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\/*"
    ]
}