CodeSandbox

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

Qu'est-ce que CodeSandbox ?

CodeSandbox est une extension Chrome développée par https://codesandbox.io, et sa fonction principale est "Quickly open a new Sandbox and this extentions adds an 'Open in CodeSandbox' button to GitHub repos".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension CodeSandbox

Téléchargez les fichiers d'extension CodeSandbox au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom CodeSandbox CodeSandbox
ID hdidglkcgdolpoijdckmafdnddjoglia
URL Officiel https://chromewebstore.google.com/detail/codesandbox/hdidglkcgdolpoijdckmafdnddjoglia
Description Quickly open a new Sandbox and this extentions adds an 'Open in CodeSandbox' button to GitHub repos
Taille du Fichier 1012 KB
Nombre d'Installations 2,254
Version Actuelle 2.2
Dernière Mise à Jour 2021-02-03
Date de Publication 2020-07-02
Évaluation 5.00/5 Total 3 Évaluations
Développeur https://codesandbox.io
Type de Paiement free
Site Web de l'Extension https://codesandbox.io/
URL de la Page d'Aide https://codesandbox.io/docs
Langues Prises en Charge 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\/*"
            ]
        }
    ]
}