Open GitHub in IDE
Open GitHub files links in your IDE
Open GitHub in IDEคืออะไร?
Open GitHub in IDE เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://lmichelin.fr และคุณลักษณะหลักของมันคือ "Open GitHub files links in your IDE"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Open GitHub in IDE
ดาวน์โหลดไฟล์ส่วนขยาย 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!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Open GitHub in IDE |
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\/*" ] } ] } |