Github Open With

Open your Github repository with 3rd party web IDEs

Hvad er Github Open With?

Github Open With er en Chrome-udvidelse udviklet af nir, og dens hovedfunktion er "Open your Github repository with 3rd party web IDEs".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Github Open With-udvidelses-CRX-fil

Download Github Open With-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

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Github Open With Github Open With
ID dggpihfahccepeedgkckjlcfgnfbjofe
Officiel URL https://chromewebstore.google.com/detail/github-open-with/dggpihfahccepeedgkckjlcfgnfbjofe
Beskrivelse Open your Github repository with 3rd party web IDEs
Filstørrelse 11.29 KB
Antal Installationer 194
Nuværende Version 1.2.0
Senest Opdateret 2023-09-19
Udgivelsesdato 2021-06-12
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler nir
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/nirtamir2/github-open-repository-with
Hjælpeside-URL https://github.com/nirtamir2/github-open-repository-with
Understøttede Sprog 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"
            ]
        }
    ]
}