CodeSandbox
Execute GitHub project in one Click
什么是CodeSandbox?
CodeSandbox是由IOT WEB LAB, LLC开发的Chrome扩展程序,该扩展的主要功能是“Execute GitHub project in one Click”。
扩展截图
下载CodeSandbox扩展crx文件
下载CodeSandbox扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 扩展基本信息
| 名称 | |
| ID | aandnjmckilnalnkmbmodifapcedaofn |
| 官方URL | https://chromewebstore.google.com/detail/codesandbox/aandnjmckilnalnkmbmodifapcedaofn |
| 简介 | Execute GitHub project in one Click |
| 文件大小 | 18.25 KB |
| 安装次数 | 1,173 |
| 当前版本 | 2.1.4 |
| 更新时间 | 2020-08-23 |
| 上架时间 | 2019-11-02 |
| 评分 | 5.00/5 共5次评分 |
| 开发者 | IOT WEB LAB, LLC |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://codesandbox.io/ |
| 支持的语言 | 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
}
]
} | |