Clone with VSCode

one-click clone with VSCode

Clone with VSCodeとは何ですか?

Clone with VSCodeはzenghongtuによって開発されたChromeの拡張機能で、その主な機能は「one-click clone with VSCode」です。

拡張機能のスクリーンショット

screenshot

Clone with VSCode拡張機能のCRXファイルをダウンロード

Clone with VSCode拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

supported GitHub / Gitee / GitLab                    

拡張機能の基本情報

名前 Clone with VSCode Clone with VSCode
ID ocicohlgdalnokmlkcfiomonhpomfame
公式URL https://chrome.google.com/webstore/detail/clone-with-vscode/ocicohlgdalnokmlkcfiomonhpomfame
説明 one-click clone with VSCode
ファイルサイズ 33.83 KB
インストール数 766
現在のバージョン 0.1.3
最終更新日 2020-07-04
公開日 2020-07-04
評価 5.00/5 合計 3 レビュー
開発者 zenghongtu
Eメール [email protected]
支払い方法 free
プライバシーポリシーページのURL https://github.com/zenghongtu/Remu/blob/master/privacy-policy.md
対応言語 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"
    ]
}