CodeSandbox

Quickly open a new Sandbox and this extentions adds an 'Open in CodeSandbox' button to GitHub repos

CodeSandbox란 무엇입니까?

CodeSandbox은(는) https://codesandbox.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickly open a new Sandbox and this extentions adds an 'Open in CodeSandbox' button to GitHub repos"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

CodeSandbox 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension adds a few capabilities to your experience on CodeSandbox.

* It adds an 'Open in CodeSandbox' button to Github Repo pages, so you can easily import any existing projects from GitHub in to CodeSandbox.

* You can also access shortcuts to create new projects directly from the extension menu.

* It improves the preview commenting capability, matching exactly what you see in the preview in screenshots captured when adding a comment.                    

확장 프로그램 기본 정보

이름 CodeSandbox CodeSandbox
ID hdidglkcgdolpoijdckmafdnddjoglia
공식 URL https://chromewebstore.google.com/detail/codesandbox/hdidglkcgdolpoijdckmafdnddjoglia
설명 Quickly open a new Sandbox and this extentions adds an 'Open in CodeSandbox' button to GitHub repos
파일 크기 1012 KB
설치 횟수 2,254
현재 버전 2.2
최근 업데이트 2021-02-03
출시 날짜 2020-07-02
평점 5.00/5 총 3 개의 평점
개발자 https://codesandbox.io
결제 유형 free
확장 프로그램 웹 사이트 https://codesandbox.io/
도움말 페이지 URL https://codesandbox.io/docs
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CodeSandbox",
    "short_name": "CodeSandbox",
    "version": "2.2",
    "description": "Quickly open a new Sandbox and this extentions adds an 'Open in CodeSandbox' button to GitHub repos",
    "homepage_url": "https:\/\/codesandbox.io",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        ""
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/codesandbox.io\/*",
                "https:\/\/codesandbox.test\/*",
                "https:\/\/codesandbox.stream\/*",
                "https:\/\/*.build.csb.dev\/*"
            ]
        }
    ]
}