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 扩展基本信息
| 名称 | |
| 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"
}
} | |