Repl.it

Run code across the web on repl.it

Repl.itคืออะไร?

Repl.it เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Samarth Jajoo และคุณลักษณะหลักของมันคือ "Run code across the web on repl.it"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Repl.it

ดาวน์โหลดไฟล์ส่วนขยาย Repl.it ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Repl.it Repl.it
ID kihnihckibjknmebghcjpmemaginnipl
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/replit/kihnihckibjknmebghcjpmemaginnipl
คำอธิบาย Run code across the web on repl.it
ขนาดไฟล์ 12.2 KB
จำนวนการติดตั้ง 4,669
เวอร์ชันปัจจุบัน 0.9
อัปเดตครั้งล่าสุด 2019-12-15
วันที่เผยแพร่ 2019-12-10
คะแนน 4.17/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา Samarth Jajoo
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/jajoosam/repl.it-chrome
ภาษาที่รองรับ 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"
    ]
}