Pyrun

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

O que é Pyrun?

Pyrun é uma extensão do Chrome desenvolvida por https://guilatrova.dev, e sua principal característica é "Integrates an IDE into Twitter, Linkedin, and Facebook and executes Python code inside your feed".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Pyrun

Baixe arquivos de extensão Pyrun no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        ✍️ 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                    

Informações Básicas da Extensão

Nome Pyrun Pyrun
ID mpkfgkeapfgoamnbdopmdlgilhjhiini
URL Oficial https://chromewebstore.google.com/detail/pyrun/mpkfgkeapfgoamnbdopmdlgilhjhiini
Descrição Integrates an IDE into Twitter, Linkedin, and Facebook and executes Python code inside your feed
Tamanho do Arquivo 240 KB
Contagem de Instalações 122
Versão Atual 1.5.3
Última Atualização 2022-10-04
Data de Publicação 2022-09-01
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor https://guilatrova.dev
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://guilatrova.github.io/pyrun-docs/
URL da Página de Ajuda https://guilatrova.github.io/pyrun-docs/
Idiomas Suportados 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\/*"
    ]
}