limesandbox
Codesandbox on chrome extension
limesandbox란 무엇입니까?
limesandbox은(는) hkngoc에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Codesandbox on chrome extension"입니다.
확장 프로그램 스크린샷
limesandbox 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The evolution of lime maker - CodeSandbox on chrome extension. CodeSandbox is an instantly ready, full-featured online IDE for web development on any device with a browser. Now, we can use it with powerful of extension API. Source code available on: https://github.com/hkngoc/limesandbox
확장 프로그램 기본 정보
이름 | limesandbox |
ID | cncmjmiooilibapmmmoppgojdhipkmdi |
공식 URL | https://chromewebstore.google.com/detail/limesandbox/cncmjmiooilibapmmmoppgojdhipkmdi |
설명 | Codesandbox on chrome extension |
파일 크기 | 38.25 MB |
설치 횟수 | 141 |
현재 버전 | 0.2.1 |
최근 업데이트 | 2022-09-12 |
출시 날짜 | 2021-06-01 |
개발자 | hkngoc |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://lime-sandbox.web.app |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "limesandbox", "version": "0.2.1", "manifest_version": 2, "description": "Codesandbox on chrome extension", "browser_action": { "default_title": "Limesandbox" }, "icons": { "128": "cocktail.png" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "storage", "http:\/\/*\/*", "https:\/\/*\/*", "*:\/\/*\/*" ], "optional_permissions": [ "identity", "cookies" ], "content_security_policy": "script-src 'self' 'unsafe-eval' 'sha256-3h1diowO97YKunD3WX1wWG060n\/HWibRlFDaaGn79qk=' 'sha256-ju0AYilx7SYhKdgDGf8FZNUrIQU+1W7GWgfeTVnZ4KE=' 'sha256-ju0AYilx7SYhKdgDGf8FZNUrIQU+1W7GWgfeTVnZ4KE=' https:\/\/cdn.jsdelivr.net https:\/\/apis.google.com https:\/\/www.youtube.com; object-src 'self';" } |