Github Open With

Open your Github repository with 3rd party web IDEs

Co to jest Github Open With?

Github Open With to rozszerzenie Chrome opracowane przez nir, a jego główną funkcją jest „Open your Github repository with 3rd party web IDEs”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Github Open With

Pobierz pliki rozszerzeń Github Open With 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

                        Chrome extension that helps you open Github repositories in a different 3rd party IDES.
 When navigating to any github repository, you can click on the green code button and see new options:
- Open in Github Dev
- Open in Github1s
- Open in StackBlitz
- Open in CodeSandbox                    

Podstawowe informacje o rozszerzeniu

Nazwa Github Open With Github Open With
ID dggpihfahccepeedgkckjlcfgnfbjofe
Oficjalny URL https://chromewebstore.google.com/detail/github-open-with/dggpihfahccepeedgkckjlcfgnfbjofe
Opis Open your Github repository with 3rd party web IDEs
Rozmiar pliku 11.29 KB
Liczba instalacji 194
Aktualna Wersja 1.2.0
Ostatnia Aktualizacja 2023-09-19
Data Publikacji 2021-06-12
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper nir
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/nirtamir2/github-open-repository-with
Adres URL Strony Pomocy https://github.com/nirtamir2/github-open-repository-with
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Github Open With",
    "version": "1.2.0",
    "description": "Open your Github repository with 3rd party web IDEs",
    "author": "Nir Tamir",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "homepage_url": "https:\/\/github.com\/nirtamir2\/github-open-with",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.github.com\/*\/*",
                "https:\/\/*.github.com\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "contentScript.js"
            ]
        }
    ]
}