Open with Code

Open source control web pages in vscode.dev

Open with Codeคืออะไร?

Open with Code เป็นส่วนขยายของ Chrome ที่พัฒนาโดย KobeW และคุณลักษณะหลักของมันคือ "Open source control web pages in vscode.dev"

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

screenshot

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

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

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

                        Will open source control web pages in online visual studio code. 
Using vscode.dev as VSCode implementation.

Works for:
* Github
* Azure devops                    

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

ชื่อ Open with Code Open with Code
ID iodnkoigdgdmeghpjohjcnoomafmonke
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/open-with-code/iodnkoigdgdmeghpjohjcnoomafmonke
คำอธิบาย Open source control web pages in vscode.dev
ขนาดไฟล์ 12.17 KB
จำนวนการติดตั้ง 51
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2022-03-04
วันที่เผยแพร่ 2022-03-04
ผู้พัฒนา KobeW
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open with Code",
    "description": "Open source control web pages in vscode.dev",
    "version": "1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*",
                "*:\/\/dev.azure.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "\/images\/OpenWithCode16.png",
            "32": "\/images\/OpenWithCode32.png",
            "48": "\/images\/OpenWithCode48.png",
            "128": "\/images\/OpenWithCode128.png"
        },
        "default_title": "Open repo in vscode.dev tab"
    },
    "icons": {
        "16": "\/images\/OpenWithCode16.png",
        "32": "\/images\/OpenWithCode32.png",
        "48": "\/images\/OpenWithCode48.png",
        "128": "\/images\/OpenWithCode128.png"
    }
}