GitHub Hardware Viewer

Tool for viewing hardware design files on Github

Co to jest GitHub Hardware Viewer?

GitHub Hardware Viewer to rozszerzenie Chrome opracowane przez Stephen Hawes, a jego główną funkcją jest „Tool for viewing hardware design files on Github”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia GitHub Hardware Viewer

Pobierz pliki rozszerzeń GitHub Hardware Viewer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa GitHub Hardware Viewer GitHub Hardware Viewer
ID oggfmoogaedapgampbfedliclpofigmn
Oficjalny URL https://chromewebstore.google.com/detail/github-hardware-viewer/oggfmoogaedapgampbfedliclpofigmn
Opis Tool for viewing hardware design files on Github
Rozmiar pliku 26.82 KB
Liczba instalacji 145
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2024-01-17
Data Publikacji 2024-01-16
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper Stephen Hawes
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/opulo-inc/hardware-github-viewer
Adres URL Strony Pomocy https://github.com/opulo-inc/hardware-github-viewer
Obsługiwane Języki 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\/*"
            ]
        }
    ]
}