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
官方網址 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
電子郵箱 [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"
    ]
}