GitHub Web IDE

Open GitHub repositories in online web IDE

Qu'est-ce que GitHub Web IDE ?

GitHub Web IDE est une extension Chrome développée par zvizvi, et sa fonction principale est "Open GitHub repositories in online web IDE".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension GitHub Web IDE

Téléchargez les fichiers d'extension GitHub Web IDE 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

                        This extension adds to any GitHub repository a new drop down menu which offers links to a number of online services that allow viewing the source code of the repository in an IDE like interface.

Services currently supported:
* GitHub Dev
* VSCode Dev
* CodeSandbox
* GiHub1s
* GitLab1s
* Repl.it
* Gitpod
* StackBlitz
* Glitch
* Sourcegraph
* Active Forks
* Gitpop2
* GitHub Memory
* Clone in VSCode (locally)

Source code is available on https://github.com/zvizvi/GitHub-Web-IDE                    

Informations de Base sur l'Extension

Nom GitHub Web IDE GitHub Web IDE
ID adjiklnjodbiaioggfpbpkhbfcnhgkfe
URL Officiel https://chromewebstore.google.com/detail/github-web-ide/adjiklnjodbiaioggfpbpkhbfcnhgkfe
Description Open GitHub repositories in online web IDE
Taille du Fichier 869 KB
Nombre d'Installations 11,469
Version Actuelle 2.0.3
Dernière Mise à Jour 2022-08-11
Date de Publication 2021-02-12
Évaluation 4.75/5 Total 20 Évaluations
Développeur zvizvi
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/zvizvi/GitHub-Web-IDE
URL de la Page d'Aide https://github.com/zvizvi/GitHub-Web-IDE/issues
Langues Prises en Charge en-US
manifest.json
{
    "name": "GitHub Web IDE",
    "description": "Open GitHub repositories in online web IDE",
    "manifest_version": 3,
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "homepage_url": "https:\/\/github.com\/zvizvi\/GitHub-Web-IDE",
    "version": "2.0.3",
    "author": "[email protected]",
    "action": {
        "default_icon": {
            "16": "img\/icon16.png",
            "32": "img\/icon32.png",
            "48": "img\/icon48.png",
            "128": "img\/icon128.png"
        }
    },
    "permissions": [
        "storage"
    ],
    "options_page": "html\/options.html",
    "content_scripts": [
        {
            "all_frames": false,
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gitlab.com\/*"
            ],
            "js": [
                "js\/main.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "img\/icon128.png",
        "96": "img\/icon96.png",
        "72": "img\/icon72.png",
        "64": "img\/icon64.png",
        "48": "img\/icon48.png",
        "32": "img\/icon32.png",
        "24": "img\/icon24.png",
        "16": "img\/icon16.png"
    }
}