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
官方網址 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
電子郵箱 [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\/*"
    ]
}