Clone with VSCode

one-click clone with VSCode

Co to jest Clone with VSCode?

Clone with VSCode to rozszerzenie Chrome opracowane przez zenghongtu, a jego główną funkcją jest „one-click clone with VSCode”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Clone with VSCode

Pobierz pliki rozszerzeń Clone with VSCode w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

supported GitHub / Gitee / GitLab                    

Podstawowe informacje o rozszerzeniu

Nazwa Clone with VSCode Clone with VSCode
ID ocicohlgdalnokmlkcfiomonhpomfame
Oficjalny URL https://chrome.google.com/webstore/detail/clone-with-vscode/ocicohlgdalnokmlkcfiomonhpomfame
Opis one-click clone with VSCode
Rozmiar pliku 33.83 KB
Liczba instalacji 766
Aktualna Wersja 0.1.3
Ostatnia Aktualizacja 2020-07-04
Data Publikacji 2020-07-04
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper zenghongtu
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://github.com/zenghongtu/Remu/blob/master/privacy-policy.md
Obsługiwane Języki 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"
    ]
}