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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        ✍️ 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
이메일 [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\/*"
    ]
}