Clone with VSCode

one-click clone with VSCode

Wat is Clone with VSCode?

Clone with VSCode is een Chrome-extensie ontwikkeld door zenghongtu, en de belangrijkste functie is "one-click clone with VSCode".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Clone with VSCode

Download Clone with VSCode-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

supported GitHub / Gitee / GitLab                    

Basisinformatie over de Extensie

Naam Clone with VSCode Clone with VSCode
ID ocicohlgdalnokmlkcfiomonhpomfame
Officiële URL https://chrome.google.com/webstore/detail/clone-with-vscode/ocicohlgdalnokmlkcfiomonhpomfame
Beschrijving one-click clone with VSCode
Bestandsgrootte 33.83 KB
Aantal Installaties 766
Huidige Versie 0.1.3
Laatst Bijgewerkt 2020-07-04
Publicatiedatum 2020-07-04
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar zenghongtu
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://github.com/zenghongtu/Remu/blob/master/privacy-policy.md
Ondersteunde Talen 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"
    ]
}