Github Open With

Open your Github repository with 3rd party web IDEs

Cos'è Github Open With?

Github Open With è un'estensione di Chrome sviluppata da nir, e la sua funzione principale è "Open your Github repository with 3rd party web IDEs".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Github Open With

Scarica i file di estensione Github Open With in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Github Open With Github Open With
ID dggpihfahccepeedgkckjlcfgnfbjofe
URL Ufficiale https://chromewebstore.google.com/detail/github-open-with/dggpihfahccepeedgkckjlcfgnfbjofe
Descrizione Open your Github repository with 3rd party web IDEs
Dimensione del File 11.29 KB
Conteggio Installazioni 194
Versione Corrente 1.2.0
Ultimo Aggiornamento 2023-09-19
Data di Pubblicazione 2021-06-12
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore nir
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/nirtamir2/github-open-repository-with
URL della Pagina di Aiuto https://github.com/nirtamir2/github-open-repository-with
Lingue Supportate 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"
            ]
        }
    ]
}