Pyrun

Integrates an IDE into Twitter, Linkedin, and Facebook and executes Python code inside your feed

Pyrunとは何ですか?

Pyrunはhttps://guilatrova.devによって開発されたChromeの拡張機能で、その主な機能は「Integrates an IDE into Twitter, Linkedin, and Facebook and executes Python code inside your feed」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Pyrun拡張機能のCRXファイルをダウンロード

Pyrun拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        ✍️ Many content creators today share Python 🐍 code through Twitter, Facebook, Linkedin using carbon.now.sh and snappify.io as BARE IMAGES.

🙅🏻 That's boring!!! It's extremely hard for your audience to understand, test, and LEARN!

👨🏻‍💻 Pyrun integrates a small IDE window in your page, so you can copy and run Python code inside Twitter!!

💁🏻‍♂️ Here's how it works

• Finds any post with the #pyrun tag
• Looks for any image inside
• Extract its "ALT" content
• 🤯 Outputs an IDE so the creator/reader can edit and run the code without leaving the page                    

拡張機能の基本情報

名前 Pyrun Pyrun
ID mpkfgkeapfgoamnbdopmdlgilhjhiini
公式URL https://chromewebstore.google.com/detail/pyrun/mpkfgkeapfgoamnbdopmdlgilhjhiini
説明 Integrates an IDE into Twitter, Linkedin, and Facebook and executes Python code inside your feed
ファイルサイズ 240 KB
インストール数 122
現在のバージョン 1.5.3
最終更新日 2022-10-04
公開日 2022-09-01
評価 5.00/5 合計 4 レビュー
開発者 https://guilatrova.dev
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://guilatrova.github.io/pyrun-docs/
ヘルプページのURL https://guilatrova.github.io/pyrun-docs/
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Pyrun",
    "description": "Integrates an IDE into Twitter, Linkedin, and Facebook and executes Python code inside your feed",
    "version": "1.5.3",
    "icons": {
        "16": "icon128t.png",
        "48": "icon128t.png",
        "128": "icon128t.png"
    },
    "action": {
        "default_icon": {
            "16": "icon128t.png",
            "24": "icon128t.png",
            "32": "icon128t.png"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "icon.png",
                "styles\/pyrun.css",
                "styles\/snappify.css",
                "js\/pyrun.js",
                "js\/twitter_modified.js",
                "js\/facebook_modified.js",
                "js\/linkedin_modified.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/vendor.js"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "scripting"
    ],
    "host_permissions": [
        "http:\/\/*.twitter.com\/*",
        "https:\/\/*.twitter.com\/*",
        "http:\/\/*.facebook.com\/*",
        "https:\/\/*.facebook.com\/*",
        "http:\/\/*.linkedin.com\/*",
        "https:\/\/*.linkedin.com\/*"
    ]
}