Github Open With

Open your Github repository with 3rd party web IDEs

Github Open Withคืออะไร?

Github Open With เป็นส่วนขยายของ Chrome ที่พัฒนาโดย nir และคุณลักษณะหลักของมันคือ "Open your Github repository with 3rd party web IDEs"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Github Open With

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

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

                        Chrome extension that helps you open Github repositories in a different 3rd party IDES.
 When navigating to any github repository, you can click on the green code button and see new options:
- Open in Github Dev
- Open in Github1s
- Open in StackBlitz
- Open in CodeSandbox                    

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

ชื่อ Github Open With Github Open With
ID dggpihfahccepeedgkckjlcfgnfbjofe
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/github-open-with/dggpihfahccepeedgkckjlcfgnfbjofe
คำอธิบาย Open your Github repository with 3rd party web IDEs
ขนาดไฟล์ 11.29 KB
จำนวนการติดตั้ง 194
เวอร์ชันปัจจุบัน 1.2.0
อัปเดตครั้งล่าสุด 2023-09-19
วันที่เผยแพร่ 2021-06-12
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา nir
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/nirtamir2/github-open-repository-with
URL หน้าช่วยเหลือ https://github.com/nirtamir2/github-open-repository-with
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Github Open With",
    "version": "1.2.0",
    "description": "Open your Github repository with 3rd party web IDEs",
    "author": "Nir Tamir",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "homepage_url": "https:\/\/github.com\/nirtamir2\/github-open-with",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.github.com\/*\/*",
                "https:\/\/*.github.com\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "contentScript.js"
            ]
        }
    ]
}