Open GitHub in IDE
Open GitHub files links in your IDE
什么是Open GitHub in IDE?
Open GitHub in IDE是由https://lmichelin.fr开发的Chrome扩展程序,该扩展的主要功能是“Open GitHub files links in your IDE”。
扩展截图
下载Open GitHub in IDE扩展crx文件
下载Open GitHub in IDE扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension allows you to open files in your IDE directly from GitHub, assuming the repository you are working on is cloned on your computer. When a fragment of a file is displayed, your IDE opens the file and puts the cursor at the desired line.
Supported IDEs:
- VS Code
- VSCodium
- VS Code Insiders
- PhpStorm
- IntelliJ IDEA
- Any JetBrains editor (using built-in web server)
- WebStorm (not tested yet)
- GoLand
- CLion
WSL with the Ubuntu distribution is also supported on VS Code, VSCodium and VS Code Insiders for Windows.
Feel free to open an issue on GitHub if you detect a bug or a missing feature! 扩展基本信息
| 名称 | |
| ID | bmifnnfmccmleigpaolofacllndmfned |
| 官方URL | https://chromewebstore.google.com/detail/open-github-in-ide/bmifnnfmccmleigpaolofacllndmfned |
| 简介 | Open GitHub files links in your IDE |
| 文件大小 | 208 KB |
| 安装次数 | 1,069 |
| 当前版本 | 1.2.3 |
| 更新时间 | 2023-09-23 |
| 上架时间 | 2020-06-28 |
| 评分 | 4.25/5 共8次评分 |
| 开发者 | https://lmichelin.fr |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/lmichelin/open-github-links-in-ide |
| 帮助页面URL | https://github.com/lmichelin/open-github-links-in-ide/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"description": "Open GitHub files links in your IDE",
"version": "1.2.3",
"manifest_version": 3,
"name": "Open GitHub in IDE",
"author": "Louis-Marie Michelin",
"homepage_url": "https:\/\/github.com\/lmichelin\/open-github-links-in-ide",
"permissions": [
"storage"
],
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"https:\/\/github.com\/*"
],
"js": [
"inject.js"
],
"css": [
"inject.css"
]
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html"
},
"icons": {
"16": "icons\/github16.png",
"32": "icons\/github32.png",
"48": "icons\/github48.png",
"64": "icons\/github64.png",
"128": "icons\/github128.png"
},
"web_accessible_resources": [
{
"resources": [
"icons\/*.png"
],
"matches": [
"https:\/\/github.com\/*"
]
}
]
} | |