Repl.it

Run code across the web on repl.it

O que é Repl.it?

Repl.it é uma extensão do Chrome desenvolvida por Samarth Jajoo, e sua principal característica é "Run code across the web on repl.it".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Repl.it

Baixe arquivos de extensão Repl.it 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

                        The Repl.it chrome extension lets you run code in any language, on the web itself!

Prompts are added in GitHub Repos + Gists, and the NPM Registry, but you can run any code you find by selecting it and hitting `Try on repl.it` in the menu 👨‍💻                    

Informações Básicas da Extensão

Nome Repl.it Repl.it
ID kihnihckibjknmebghcjpmemaginnipl
URL Oficial https://chrome.google.com/webstore/detail/replit/kihnihckibjknmebghcjpmemaginnipl
Descrição Run code across the web on repl.it
Tamanho do Arquivo 12.2 KB
Contagem de Instalações 4,669
Versão Atual 0.9
Última Atualização 2019-12-15
Data de Publicação 2019-12-10
Classificação 4.17/5 Total de 6 Avaliações
Desenvolvedor Samarth Jajoo
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/jajoosam/repl.it-chrome
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Repl.it",
    "version": "0.9",
    "description": "Run code across the web on repl.it",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "js": [
                "index.js"
            ],
            "matches": [
                "https:\/\/gist.github.com\/*\/*",
                "https:\/\/www.npmjs.com\/package\/*",
                "https:\/\/github.com\/*\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "menu.js"
        ],
        "persistent": false
    },
    "permissions": [
        "contextMenus",
        "tabs",
        "activeTab",
        "storage"
    ]
}