Open with Visual Studio Code - Github

Overrides Open in Visual Studio button on GitHub with Open in Visual Studio Code

Hvad er Open with Visual Studio Code - Github?

Open with Visual Studio Code - Github er en Chrome-udvidelse udviklet af BananiumLabs, Inc, og dens hovedfunktion er "Overrides Open in Visual Studio button on GitHub with Open in Visual Studio Code".

Udvidelsesskærmbilleder

screenshot

Download Open with Visual Studio Code - Github-udvidelses-CRX-fil

Download Open with Visual Studio Code - Github-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        This extension overrides the "Open in Visual Studio" button on GitHub with Open in Visual Studio Code.

Source code is available here: https://github.com/BananiumLabs/GitHub-VSCodeClone                    

Grundlæggende oplysninger om udvidelsen

Navn Open with Visual Studio Code - Github Open with Visual Studio Code - Github
ID gbnnlkbgnpcphebpbbfdabipmccjfama
Officiel URL https://chromewebstore.google.com/detail/open-with-visual-studio-c/gbnnlkbgnpcphebpbbfdabipmccjfama
Beskrivelse Overrides Open in Visual Studio button on GitHub with Open in Visual Studio Code
Filstørrelse 47.19 KB
Antal Installationer 4,355
Nuværende Version 1.2.2
Senest Opdateret 2021-07-02
Udgivelsesdato 2020-06-29
Bedømmelse 4.50/5 Samlet 2 Bedømmelser
Udvikler BananiumLabs, Inc
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/BananiumLabs/GitHub-VSCodeClone
Hjælpeside-URL https://github.com/BananiumLabs/GitHub-VSCodeClone/issues
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open with Visual Studio Code - Github",
    "short_name": "VSCode-gitclone",
    "description": "Overrides Open in Visual Studio button on GitHub with Open in Visual Studio Code",
    "version": "1.2.2",
    "version_name": "1.2.2",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "host_permissions": [
        "https:\/\/github.com\/*"
    ],
    "author": "Eric Qian",
    "homepage_url": "https:\/\/enumc.com",
    "manifest_version": 3
}