Repl.it

Run code across the web on repl.it

Cos'è Repl.it?

Repl.it è un'estensione di Chrome sviluppata da Samarth Jajoo, e la sua funzione principale è "Run code across the web on repl.it".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Repl.it

Scarica i file di estensione Repl.it in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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 👨‍💻                    

Informazioni di Base sull'Estensione

Nome Repl.it Repl.it
ID kihnihckibjknmebghcjpmemaginnipl
URL Ufficiale https://chrome.google.com/webstore/detail/replit/kihnihckibjknmebghcjpmemaginnipl
Descrizione Run code across the web on repl.it
Dimensione del File 12.2 KB
Conteggio Installazioni 4,669
Versione Corrente 0.9
Ultimo Aggiornamento 2019-12-15
Data di Pubblicazione 2019-12-10
Valutazione 4.17/5 Totale 6 Valutazioni
Sviluppatore Samarth Jajoo
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/jajoosam/repl.it-chrome
Lingue Supportate 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"
    ]
}