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
公式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
Eメール [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\/*"
    ]
}