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 |
| Eメール | [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\/*"
]
}
]
} | |