CodeSandbox

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

Co to jest CodeSandbox?

CodeSandbox to rozszerzenie Chrome opracowane przez https://codesandbox.io, a jego główną funkcją jest „Quickly open a new Sandbox and this extentions adds an 'Open in CodeSandbox' button to GitHub repos”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia CodeSandbox

Pobierz pliki rozszerzeń CodeSandbox w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa CodeSandbox CodeSandbox
ID hdidglkcgdolpoijdckmafdnddjoglia
Oficjalny URL https://chromewebstore.google.com/detail/codesandbox/hdidglkcgdolpoijdckmafdnddjoglia
Opis Quickly open a new Sandbox and this extentions adds an 'Open in CodeSandbox' button to GitHub repos
Rozmiar pliku 1012 KB
Liczba instalacji 2,254
Aktualna Wersja 2.2
Ostatnia Aktualizacja 2021-02-03
Data Publikacji 2020-07-02
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper https://codesandbox.io
Typ Płatności free
Strona Rozszerzenia https://codesandbox.io/
Adres URL Strony Pomocy https://codesandbox.io/docs
Obsługiwane Języki 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\/*"
            ]
        }
    ]
}