Clone with VSCode

one-click clone with VSCode

Apa itu Clone with VSCode?

Clone with VSCode adalah ekstensi Chrome yang dikembangkan oleh zenghongtu, dan fitur utamanya adalah "one-click clone with VSCode".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Clone with VSCode

Unduh file ekstensi Clone with VSCode 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

                        option:
    - Use the Insiders Build (default:fasle)
    - Use SSH (default: HTTPS)

supported GitHub / Gitee / GitLab                    

Informasi Dasar Ekstensi

Nama Clone with VSCode Clone with VSCode
ID ocicohlgdalnokmlkcfiomonhpomfame
URL Resmi https://chrome.google.com/webstore/detail/clone-with-vscode/ocicohlgdalnokmlkcfiomonhpomfame
Deskripsi one-click clone with VSCode
Ukuran File 33.83 KB
Jumlah Instalasi 766
Versi Saat Ini 0.1.3
Terakhir Diperbarui 2020-07-04
Tanggal Publikasi 2020-07-04
Penilaian 5.00/5 Total 3 Penilaian
Pengembang zenghongtu
Email [email protected]
Tipe Pembayaran free
URL Halaman Kebijakan Privasi https://github.com/zenghongtu/Remu/blob/master/privacy-policy.md
Bahasa yang Didukung en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "one-click clone with VSCode",
    "version": "0.1.3",
    "name": "Clone with VSCode",
    "author": "zenghongtu ",
    "manifest_version": 2,
    "homepage_url": "https:\/\/github.com\/zenghongtu\/",
    "icons": {
        "32": "icons\/32x32.png",
        "64": "icons\/64x64.png",
        "128": "icons\/128x128.png",
        "256": "icons\/256x256.png"
    },
    "permissions": [
        "storage",
        "clipboardWrite",
        "unlimitedStorage"
    ],
    "browser_action": {
        "default_icon": "icons\/64x64.png",
        "default_title": "Clone with VSCode",
        "default_popup": "popup.html"
    },
    "offline_enabled": true,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gitee.com\/*",
                "https:\/\/gitlab.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "icons\/16x16.png"
    ]
}