Repl.it

Run code across the web on repl.it

What is Repl.it?

Repl.it is a Chrome extension developed by Samarth Jajoo, and its main feature is "Run code across the web on repl.it".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download Repl.it Extension CRX File

Download Repl.it extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Repl.it Repl.it
ID kihnihckibjknmebghcjpmemaginnipl
Official URL https://chrome.google.com/webstore/detail/replit/kihnihckibjknmebghcjpmemaginnipl
Description Run code across the web on repl.it
File Size 12.2 KB
Installation Count 4,669
Current Version 0.9
Last Updated 2019-12-15
Publish Date 2019-12-10
Rating 4.17/5 Total 6 Ratings
Developer Samarth Jajoo
Email [email protected]
Payment Type free
Extension Website https://github.com/jajoosam/repl.it-chrome
Supported Languages 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"
    ]
}