CodeSandbox
Execute GitHub project in one Click
Qu'est-ce que CodeSandbox ?
CodeSandbox est une extension Chrome développée par IOT WEB LAB, LLC, et sa fonction principale est "Execute GitHub project in one Click".
Captures d'Écran de l'Extension
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
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
Informations de Base sur l'Extension
Nom | CodeSandbox |
ID | aandnjmckilnalnkmbmodifapcedaofn |
URL Officiel | https://chromewebstore.google.com/detail/codesandbox/aandnjmckilnalnkmbmodifapcedaofn |
Description | Execute GitHub project in one Click |
Taille du Fichier | 18.25 KB |
Nombre d'Installations | 1,173 |
Version Actuelle | 2.1.4 |
Dernière Mise à Jour | 2020-08-23 |
Date de Publication | 2019-11-02 |
Évaluation | 5.00/5 Total 5 Évaluations |
Développeur | IOT WEB LAB, LLC |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://codesandbox.io/ |
Langues Prises en Charge | 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 } ] } |