CodeSandbox

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

Cos'è CodeSandbox?

CodeSandbox è un'estensione di Chrome sviluppata da https://codesandbox.io, e la sua funzione principale è "Quickly open a new Sandbox and this extentions adds an 'Open in CodeSandbox' button to GitHub repos".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione CodeSandbox

Scarica i file di estensione CodeSandbox in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome CodeSandbox CodeSandbox
ID hdidglkcgdolpoijdckmafdnddjoglia
URL Ufficiale https://chromewebstore.google.com/detail/codesandbox/hdidglkcgdolpoijdckmafdnddjoglia
Descrizione Quickly open a new Sandbox and this extentions adds an 'Open in CodeSandbox' button to GitHub repos
Dimensione del File 1012 KB
Conteggio Installazioni 2,254
Versione Corrente 2.2
Ultimo Aggiornamento 2021-02-03
Data di Pubblicazione 2020-07-02
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore https://codesandbox.io
Tipo di Pagamento free
Sito Web dell'Estensione https://codesandbox.io/
URL della Pagina di Aiuto https://codesandbox.io/docs
Lingue Supportate 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\/*"
            ]
        }
    ]
}