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
电子邮箱 [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"
    ]
}