Open with Code
Open source control web pages in vscode.dev
什麼是Open with Code?
Open with Code是由KobeW開發的Chrome擴展程式,該擴展的主要功能是“Open source control web pages in vscode.dev”。
擴展截圖
下載Open with Code擴展crx文件
下載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 |
ID | iodnkoigdgdmeghpjohjcnoomafmonke |
官方網址 | 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" } } |