GitHub to Code

Allows developers to open GitHub repositories locally within Visual Studio Code.

Was ist GitHub to Code?

GitHub to Code ist eine Chrome-Erweiterung, die von maxchehab entwickelt wurde, und ihr Hauptmerkmal ist "Allows developers to open GitHub repositories locally within Visual Studio Code.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

GitHub to Code-Erweiterungs-CRX-Datei herunterladen

Laden Sie GitHub to Code-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Features: 
- Custom keyboard shortcut
- Fast setup
- Open from file page, inline markdown, or a code review                    

Grundlegende Informationen zur Erweiterung

Name GitHub to Code GitHub to Code
ID nmhejamhnhhhegjaalgklaeeladhkaph
Offizielle URL https://chrome.google.com/webstore/detail/github-to-code/nmhejamhnhhhegjaalgklaeeladhkaph
Beschreibung Allows developers to open GitHub repositories locally within Visual Studio Code.
Dateigröße 6.05 MB
Installationsanzahl 139
Aktuelle Version 0.0.4
Letztes Update 2019-10-08
Veröffentlichungsdatum 2019-10-08
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler maxchehab
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/maxchehab/gh-code
Hilfeseite URL https://github.com/maxchehab/gh-code
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub to Code",
    "version": "0.0.4",
    "description": "Allows developers to open GitHub repositories locally within Visual Studio Code.",
    "icons": {
        "48": "icons\/code-logo.png"
    },
    "applications": {
        "gecko": {
            "id": "{b58eb207-8f2e-41ce-a28e-3046f1e92a5f}"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.github.com\/*"
            ],
            "js": [
                ".\/common\/utils\/polyfill.util.js",
                ".\/extension\/content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage",
        "tabs",
        ""
    ],
    "web_accessible_resources": [
        "icons\/code-logo.png",
        "next\/out\/*"
    ],
    "background": {
        "scripts": [
            ".\/common\/utils\/polyfill.util.js",
            ".\/extension\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/code-logo.png",
        "default_title": "Github to Code",
        "default_popup": "next\/out\/index.html",
        "browser_style": true
    },
    "commands": {
        "open-repo-or-file": {
            "suggested_key": {
                "default": "Ctrl+G",
                "mac": "MacCtrl+G"
            },
            "description": "Open current repository or file."
        }
    }
}