CodeSandbox

Quickly open a new Sandbox and this extentions adds an 'Open in CodeSandbox' button to GitHub repos

ما هو CodeSandbox؟

CodeSandbox هو إضافة Chrome تم تطويرها بواسطة https://codesandbox.io، والميزة الرئيسية لها هي "Quickly open a new Sandbox and this extentions adds an 'Open in CodeSandbox' button to GitHub repos".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة CodeSandbox

قم بتنزيل ملفات الامتداد CodeSandbox بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        This extension adds a few capabilities to your experience on CodeSandbox.

* It adds an 'Open in CodeSandbox' button to Github Repo pages, so you can easily import any existing projects from GitHub in to CodeSandbox.

* You can also access shortcuts to create new projects directly from the extension menu.

* It improves the preview commenting capability, matching exactly what you see in the preview in screenshots captured when adding a comment.                    

معلومات أساسية عن التمديد

الاسم CodeSandbox CodeSandbox
ID hdidglkcgdolpoijdckmafdnddjoglia
عنوان URL الرسمي https://chromewebstore.google.com/detail/codesandbox/hdidglkcgdolpoijdckmafdnddjoglia
الوصف Quickly open a new Sandbox and this extentions adds an 'Open in CodeSandbox' button to GitHub repos
حجم الملف 1012 KB
عدد التثبيتات 2,254
النسخة الحالية 2.2
آخر تحديث 2021-02-03
تاريخ النشر 2020-07-02
تقييم 5.00/5 مجموع تقييمات 3
المطور https://codesandbox.io
نوع الدفع free
موقع الإضافة https://codesandbox.io/
عنوان صفحة المساعدة https://codesandbox.io/docs
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CodeSandbox",
    "short_name": "CodeSandbox",
    "version": "2.2",
    "description": "Quickly open a new Sandbox and this extentions adds an 'Open in CodeSandbox' button to GitHub repos",
    "homepage_url": "https:\/\/codesandbox.io",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        ""
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/codesandbox.io\/*",
                "https:\/\/codesandbox.test\/*",
                "https:\/\/codesandbox.stream\/*",
                "https:\/\/*.build.csb.dev\/*"
            ]
        }
    ]
}