GitHub Hardware Viewer

Tool for viewing hardware design files on Github

Что такое GitHub Hardware Viewer?

GitHub Hardware Viewer - это расширение Chrome, разработанное Stephen Hawes, и его основная функция - "Tool for viewing hardware design files on Github".

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

screenshot

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

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

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

                        Extension for generating links in Github viewing PCB and 3D modeling files in-browser! No need to pull the repo to checkout hardware designs hosted in Github; just click the generated link next to the filename in a repo, and view the source immediately.                    

Основная информация о расширении

Название GitHub Hardware Viewer GitHub Hardware Viewer
ID oggfmoogaedapgampbfedliclpofigmn
Официальный URL https://chromewebstore.google.com/detail/github-hardware-viewer/oggfmoogaedapgampbfedliclpofigmn
Описание Tool for viewing hardware design files on Github
Размер файла 26.82 KB
Количество установок 145
Текущая Версия 1.1
Последнее Обновление 2024-01-17
Дата публикации 2024-01-16
Рейтинг 5.00/5 Всего 3 оценок
Разработчик Stephen Hawes
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/opulo-inc/hardware-github-viewer
URL страницы помощи https://github.com/opulo-inc/hardware-github-viewer
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GitHub Hardware Viewer",
    "description": "Tool for viewing hardware design files on Github",
    "version": "1.1",
    "action": {
        "default_popup": "hello.html",
        "default_icon": "opulo.png"
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/content.js"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "opulo.png"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ]
        }
    ]
}