Clone with VSCode

one-click clone with VSCode

Cos'è Clone with VSCode?

Clone with VSCode è un'estensione di Chrome sviluppata da zenghongtu, e la sua funzione principale è "one-click clone with VSCode".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Clone with VSCode

Scarica i file di estensione Clone with VSCode in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

supported GitHub / Gitee / GitLab                    

Informazioni di Base sull'Estensione

Nome Clone with VSCode Clone with VSCode
ID ocicohlgdalnokmlkcfiomonhpomfame
URL Ufficiale https://chrome.google.com/webstore/detail/clone-with-vscode/ocicohlgdalnokmlkcfiomonhpomfame
Descrizione one-click clone with VSCode
Dimensione del File 33.83 KB
Conteggio Installazioni 766
Versione Corrente 0.1.3
Ultimo Aggiornamento 2020-07-04
Data di Pubblicazione 2020-07-04
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore zenghongtu
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://github.com/zenghongtu/Remu/blob/master/privacy-policy.md
Lingue Supportate 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"
    ]
}