Repl.it

Run code across the web on repl.it

Repl.it là gì?

Repl.it là một tiện ích mở rộng Chrome được phát triển bởi Samarth Jajoo, và tính năng chính của nó là "Run code across the web on repl.it".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Repl.it

Tải xuống các tệp mở rộng Repl.it dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Repl.it Repl.it
ID kihnihckibjknmebghcjpmemaginnipl
URL Chính Thức https://chrome.google.com/webstore/detail/replit/kihnihckibjknmebghcjpmemaginnipl
Mô tả Run code across the web on repl.it
Kích Thước Tệp 12.2 KB
Số Lần Cài Đặt 4,669
Phiên Bản Hiện Tại 0.9
Cập Nhật Lần Cuối 2019-12-15
Ngày Phát Hành 2019-12-10
Đánh Giá 4.17/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Samarth Jajoo
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/jajoosam/repl.it-chrome
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}