CodeSandbox
Execute GitHub project in one Click
CodeSandbox란 무엇입니까?
CodeSandbox은(는) IOT WEB LAB, LLC에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Execute GitHub project in one Click"입니다.
확장 프로그램 스크린샷
CodeSandbox 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | 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 } ] } |