CodeSandbox
Execute GitHub project in one Click
What is CodeSandbox?
CodeSandbox is a Chrome extension developed by IOT WEB LAB, LLC, and its main feature is "Execute GitHub project in one Click".
Extension Screenshots
Download CodeSandbox Extension CRX File
Download CodeSandbox extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | CodeSandbox |
ID | aandnjmckilnalnkmbmodifapcedaofn |
Official URL | https://chromewebstore.google.com/detail/codesandbox/aandnjmckilnalnkmbmodifapcedaofn |
Description | Execute GitHub project in one Click |
File Size | 18.25 KB |
Installation Count | 1,173 |
Current Version | 2.1.4 |
Last Updated | 2020-08-23 |
Publish Date | 2019-11-02 |
Rating | 5.00/5 Total 5 Ratings |
Developer | IOT WEB LAB, LLC |
[email protected] | |
Payment Type | free |
Extension Website | https://codesandbox.io/ |
Supported Languages | 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 } ] } |