Open GitHub in IDE
Open GitHub files links in your IDE
Open GitHub in IDE là gì?
Open GitHub in IDE là một tiện ích mở rộng Chrome được phát triển bởi https://lmichelin.fr, và tính năng chính của nó là "Open GitHub files links in your IDE".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Open GitHub in IDE
Tải xuống các tệp mở rộng Open GitHub in IDE dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Open GitHub in IDE |
ID | bmifnnfmccmleigpaolofacllndmfned |
URL Chính Thức | https://chromewebstore.google.com/detail/open-github-in-ide/bmifnnfmccmleigpaolofacllndmfned |
Mô tả | Open GitHub files links in your IDE |
Kích Thước Tệp | 208 KB |
Số Lần Cài Đặt | 1,069 |
Phiên Bản Hiện Tại | 1.2.3 |
Cập Nhật Lần Cuối | 2023-09-23 |
Ngày Phát Hành | 2020-06-28 |
Đánh Giá | 4.25/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | https://lmichelin.fr |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/lmichelin/open-github-links-in-ide |
URL Trang Trợ Giúp | https://github.com/lmichelin/open-github-links-in-ide/issues |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |