Repl.it

Run code across the web on repl.it

Apa itu Repl.it?

Repl.it adalah ekstensi Chrome yang dikembangkan oleh Samarth Jajoo, dan fitur utamanya adalah "Run code across the web on repl.it".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Repl.it

Unduh file ekstensi Repl.it dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Repl.it Repl.it
ID kihnihckibjknmebghcjpmemaginnipl
URL Resmi https://chrome.google.com/webstore/detail/replit/kihnihckibjknmebghcjpmemaginnipl
Deskripsi Run code across the web on repl.it
Ukuran File 12.2 KB
Jumlah Instalasi 4,669
Versi Saat Ini 0.9
Terakhir Diperbarui 2019-12-15
Tanggal Publikasi 2019-12-10
Penilaian 4.17/5 Total 6 Penilaian
Pengembang Samarth Jajoo
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/jajoosam/repl.it-chrome
Bahasa yang Didukung 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"
    ]
}