GitHub to Code

Allows developers to open GitHub repositories locally within Visual Studio Code.

GitHub to Codeคืออะไร?

GitHub to Code เป็นส่วนขยายของ Chrome ที่พัฒนาโดย maxchehab และคุณลักษณะหลักของมันคือ "Allows developers to open GitHub repositories locally within Visual Studio Code."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GitHub to Code

ดาวน์โหลดไฟล์ส่วนขยาย GitHub to Code ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Features: 
- Custom keyboard shortcut
- Fast setup
- Open from file page, inline markdown, or a code review                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ GitHub to Code GitHub to Code
ID nmhejamhnhhhegjaalgklaeeladhkaph
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/github-to-code/nmhejamhnhhhegjaalgklaeeladhkaph
คำอธิบาย Allows developers to open GitHub repositories locally within Visual Studio Code.
ขนาดไฟล์ 6.05 MB
จำนวนการติดตั้ง 139
เวอร์ชันปัจจุบัน 0.0.4
อัปเดตครั้งล่าสุด 2019-10-08
วันที่เผยแพร่ 2019-10-08
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา maxchehab
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/maxchehab/gh-code
URL หน้าช่วยเหลือ https://github.com/maxchehab/gh-code
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub to Code",
    "version": "0.0.4",
    "description": "Allows developers to open GitHub repositories locally within Visual Studio Code.",
    "icons": {
        "48": "icons\/code-logo.png"
    },
    "applications": {
        "gecko": {
            "id": "{b58eb207-8f2e-41ce-a28e-3046f1e92a5f}"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.github.com\/*"
            ],
            "js": [
                ".\/common\/utils\/polyfill.util.js",
                ".\/extension\/content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage",
        "tabs",
        ""
    ],
    "web_accessible_resources": [
        "icons\/code-logo.png",
        "next\/out\/*"
    ],
    "background": {
        "scripts": [
            ".\/common\/utils\/polyfill.util.js",
            ".\/extension\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/code-logo.png",
        "default_title": "Github to Code",
        "default_popup": "next\/out\/index.html",
        "browser_style": true
    },
    "commands": {
        "open-repo-or-file": {
            "suggested_key": {
                "default": "Ctrl+G",
                "mac": "MacCtrl+G"
            },
            "description": "Open current repository or file."
        }
    }
}