Repl.it

Run code across the web on repl.it

Co to jest Repl.it?

Repl.it to rozszerzenie Chrome opracowane przez Samarth Jajoo, a jego główną funkcją jest „Run code across the web on repl.it”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Repl.it

Pobierz pliki rozszerzeń Repl.it w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Repl.it Repl.it
ID kihnihckibjknmebghcjpmemaginnipl
Oficjalny URL https://chrome.google.com/webstore/detail/replit/kihnihckibjknmebghcjpmemaginnipl
Opis Run code across the web on repl.it
Rozmiar pliku 12.2 KB
Liczba instalacji 4,669
Aktualna Wersja 0.9
Ostatnia Aktualizacja 2019-12-15
Data Publikacji 2019-12-10
Ocena 4.17/5 Łącznie 6 Oceny
Deweloper Samarth Jajoo
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/jajoosam/repl.it-chrome
Obsługiwane Języki 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"
    ]
}