Clone with VSCode

one-click clone with VSCode

Clone with VSCodeคืออะไร?

Clone with VSCode เป็นส่วนขยายของ Chrome ที่พัฒนาโดย zenghongtu และคุณลักษณะหลักของมันคือ "one-click clone with VSCode"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Clone with VSCode

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}