Clone with VSCode

one-click clone with VSCode

Qu'est-ce que Clone with VSCode ?

Clone with VSCode est une extension Chrome développée par zenghongtu, et sa fonction principale est "one-click clone with VSCode".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Clone with VSCode

Téléchargez les fichiers d'extension Clone with VSCode au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

supported GitHub / Gitee / GitLab                    

Informations de Base sur l'Extension

Nom Clone with VSCode Clone with VSCode
ID ocicohlgdalnokmlkcfiomonhpomfame
URL Officiel https://chrome.google.com/webstore/detail/clone-with-vscode/ocicohlgdalnokmlkcfiomonhpomfame
Description one-click clone with VSCode
Taille du Fichier 33.83 KB
Nombre d'Installations 766
Version Actuelle 0.1.3
Dernière Mise à Jour 2020-07-04
Date de Publication 2020-07-04
Évaluation 5.00/5 Total 3 Évaluations
Développeur zenghongtu
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://github.com/zenghongtu/Remu/blob/master/privacy-policy.md
Langues Prises en Charge 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"
    ]
}