Clone with VSCode

one-click clone with VSCode

What is Clone with VSCode?

Clone with VSCode is a Chrome extension developed by zenghongtu, and its main feature is "one-click clone with VSCode".

Extension Screenshots

screenshot

Download Clone with VSCode Extension CRX File

Download Clone with VSCode extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

supported GitHub / Gitee / GitLab                    

Extension Basic Information

Name Clone with VSCode Clone with VSCode
ID ocicohlgdalnokmlkcfiomonhpomfame
Official URL https://chrome.google.com/webstore/detail/clone-with-vscode/ocicohlgdalnokmlkcfiomonhpomfame
Description one-click clone with VSCode
File Size 33.83 KB
Installation Count 766
Current Version 0.1.3
Last Updated 2020-07-04
Publish Date 2020-07-04
Rating 5.00/5 Total 3 Ratings
Developer zenghongtu
Email [email protected]
Payment Type free
Privacy Policy Page URL https://github.com/zenghongtu/Remu/blob/master/privacy-policy.md
Supported Languages 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"
    ]
}