CodeSandbox

Execute GitHub project in one Click

Cos'è CodeSandbox?

CodeSandbox è un'estensione di Chrome sviluppata da IOT WEB LAB, LLC, e la sua funzione principale è "Execute GitHub project in one Click".

Screenshot dell'Estensione

screenshot
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

                        Instance execute the GitHub project via "CodeSandbox" online

Supported Languages: JavaScript, TypeScript

Supported most popular Libraries:  
~ ReactJS | AngularJS | VueJS | GatsbyJS | NextJS | NuxtJS ~ 
and other relevant contains package.json file

Installation:
1) Add extension to your browser
2) Find any github project you would like to execute*
3) Click the icon

* there are some permissions executing projects at CodeSandbox
** you have to be logged in to your github Account to use CodeSandbox                    

Informazioni di Base sull'Estensione

Nome CodeSandbox CodeSandbox
ID aandnjmckilnalnkmbmodifapcedaofn
URL Ufficiale https://chromewebstore.google.com/detail/codesandbox/aandnjmckilnalnkmbmodifapcedaofn
Descrizione Execute GitHub project in one Click
Dimensione del File 18.25 KB
Conteggio Installazioni 1,173
Versione Corrente 2.1.4
Ultimo Aggiornamento 2020-08-23
Data di Pubblicazione 2019-11-02
Valutazione 5.00/5 Totale 5 Valutazioni
Sviluppatore IOT WEB LAB, LLC
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://codesandbox.io/
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CodeSandbox",
    "short_name": "CodeSandbox",
    "description": "Execute GitHub project in one Click",
    "icons": {
        "16": "16.png",
        "32": "32.png",
        "48": "48.png",
        "96": "96.png",
        "128": "128.png"
    },
    "version": "2.1.4",
    "author": "Danilov Roman",
    "browser_action": {
        "default_icon": "16.png",
        "default_title": "GitHub project in one Click"
    },
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "background": {
        "scripts": [
            "src.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "src.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}