Repl.it

Run code across the web on repl.it

Wat is Repl.it?

Repl.it is een Chrome-extensie ontwikkeld door Samarth Jajoo, en de belangrijkste functie is "Run code across the web on repl.it".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Repl.it

Download Repl.it-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Repl.it Repl.it
ID kihnihckibjknmebghcjpmemaginnipl
Officiële URL https://chrome.google.com/webstore/detail/replit/kihnihckibjknmebghcjpmemaginnipl
Beschrijving Run code across the web on repl.it
Bestandsgrootte 12.2 KB
Aantal Installaties 4,669
Huidige Versie 0.9
Laatst Bijgewerkt 2019-12-15
Publicatiedatum 2019-12-10
Beoordeling 4.17/5 Totaal 6 Beoordelingen
Ontwikkelaar Samarth Jajoo
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/jajoosam/repl.it-chrome
Ondersteunde Talen 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"
    ]
}