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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    ]
}