Github Open With

Open your Github repository with 3rd party web IDEs

Qu'est-ce que Github Open With ?

Github Open With est une extension Chrome développée par nir, et sa fonction principale est "Open your Github repository with 3rd party web IDEs".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Github Open With

Téléchargez les fichiers d'extension Github Open With au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Github Open With Github Open With
ID dggpihfahccepeedgkckjlcfgnfbjofe
URL Officiel https://chromewebstore.google.com/detail/github-open-with/dggpihfahccepeedgkckjlcfgnfbjofe
Description Open your Github repository with 3rd party web IDEs
Taille du Fichier 11.29 KB
Nombre d'Installations 194
Version Actuelle 1.2.0
Dernière Mise à Jour 2023-09-19
Date de Publication 2021-06-12
Évaluation 5.00/5 Total 1 Évaluations
Développeur nir
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/nirtamir2/github-open-repository-with
URL de la Page d'Aide https://github.com/nirtamir2/github-open-repository-with
Langues Prises en Charge 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"
            ]
        }
    ]
}