Github Open With

Open your Github repository with 3rd party web IDEs

Apa itu Github Open With?

Github Open With adalah ekstensi Chrome yang dikembangkan oleh nir, dan fitur utamanya adalah "Open your Github repository with 3rd party web IDEs".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Github Open With

Unduh file ekstensi Github Open With dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Github Open With Github Open With
ID dggpihfahccepeedgkckjlcfgnfbjofe
URL Resmi https://chromewebstore.google.com/detail/github-open-with/dggpihfahccepeedgkckjlcfgnfbjofe
Deskripsi Open your Github repository with 3rd party web IDEs
Ukuran File 11.29 KB
Jumlah Instalasi 194
Versi Saat Ini 1.2.0
Terakhir Diperbarui 2023-09-19
Tanggal Publikasi 2021-06-12
Penilaian 5.00/5 Total 1 Penilaian
Pengembang nir
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/nirtamir2/github-open-repository-with
URL Halaman Bantuan https://github.com/nirtamir2/github-open-repository-with
Bahasa yang Didukung 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"
            ]
        }
    ]
}