CodeSandbox

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

Apa itu CodeSandbox?

CodeSandbox adalah ekstensi Chrome yang dikembangkan oleh https://codesandbox.io, dan fitur utamanya adalah "Quickly open a new Sandbox and this extentions adds an 'Open in CodeSandbox' button to GitHub repos".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi CodeSandbox

Unduh file ekstensi CodeSandbox dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama CodeSandbox CodeSandbox
ID hdidglkcgdolpoijdckmafdnddjoglia
URL Resmi https://chromewebstore.google.com/detail/codesandbox/hdidglkcgdolpoijdckmafdnddjoglia
Deskripsi Quickly open a new Sandbox and this extentions adds an 'Open in CodeSandbox' button to GitHub repos
Ukuran File 1012 KB
Jumlah Instalasi 2,254
Versi Saat Ini 2.2
Terakhir Diperbarui 2021-02-03
Tanggal Publikasi 2020-07-02
Penilaian 5.00/5 Total 3 Penilaian
Pengembang https://codesandbox.io
Tipe Pembayaran free
Situs Ekstensi https://codesandbox.io/
URL Halaman Bantuan https://codesandbox.io/docs
Bahasa yang Didukung 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\/*"
            ]
        }
    ]
}