Repl.it

Run code across the web on repl.it

Co je Repl.it?

Repl.it je rozšíření Chrome vyvinuté Samarth Jajoo, a jeho hlavní funkcí je „Run code across the web on repl.it“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Repl.it

Stáhněte si soubory rozšíření Repl.it ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Repl.it Repl.it
ID kihnihckibjknmebghcjpmemaginnipl
Oficiální URL https://chrome.google.com/webstore/detail/replit/kihnihckibjknmebghcjpmemaginnipl
Popis Run code across the web on repl.it
Velikost souboru 12.2 KB
Počet instalací 4,669
Aktuální Verze 0.9
Poslední Aktualizace 2019-12-15
Datum Vydání 2019-12-10
Hodnocení 4.17/5 Celkem 6 Hodnocení
Vývojář Samarth Jajoo
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/jajoosam/repl.it-chrome
Podporované Jazyky 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"
    ]
}