CodeSandbox

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

Что такое CodeSandbox?

CodeSandbox - это расширение Chrome, разработанное https://codesandbox.io, и его основная функция - "Quickly open a new Sandbox and this extentions adds an 'Open in CodeSandbox' button to GitHub repos".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения CodeSandbox

Скачайте файлы расширений CodeSandbox в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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\/*"
            ]
        }
    ]
}