CodeSandbox

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

CodeSandbox là gì?

CodeSandbox là một tiện ích mở rộng Chrome được phát triển bởi https://codesandbox.io, và tính năng chính của nó là "Quickly open a new Sandbox and this extentions adds an 'Open in CodeSandbox' button to GitHub repos".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng CodeSandbox

Tải xuống các tệp mở rộng CodeSandbox dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên CodeSandbox CodeSandbox
ID hdidglkcgdolpoijdckmafdnddjoglia
URL Chính Thức https://chromewebstore.google.com/detail/codesandbox/hdidglkcgdolpoijdckmafdnddjoglia
Mô tả Quickly open a new Sandbox and this extentions adds an 'Open in CodeSandbox' button to GitHub repos
Kích Thước Tệp 1012 KB
Số Lần Cài Đặt 2,254
Phiên Bản Hiện Tại 2.2
Cập Nhật Lần Cuối 2021-02-03
Ngày Phát Hành 2020-07-02
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển https://codesandbox.io
Loại Thanh Toán free
Trang Web Mở Rộng https://codesandbox.io/
URL Trang Trợ Giúp https://codesandbox.io/docs
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}