Open GitHub in IDE
Open GitHub files links in your IDE
Qu'est-ce que Open GitHub in IDE ?
Open GitHub in IDE est une extension Chrome développée par https://lmichelin.fr, et sa fonction principale est "Open GitHub files links in your IDE".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Open GitHub in IDE
Téléchargez les fichiers d'extension Open GitHub in IDE au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | Open GitHub in IDE |
ID | bmifnnfmccmleigpaolofacllndmfned |
URL Officiel | https://chromewebstore.google.com/detail/open-github-in-ide/bmifnnfmccmleigpaolofacllndmfned |
Description | Open GitHub files links in your IDE |
Taille du Fichier | 208 KB |
Nombre d'Installations | 1,069 |
Version Actuelle | 1.2.3 |
Dernière Mise à Jour | 2023-09-23 |
Date de Publication | 2020-06-28 |
Évaluation | 4.25/5 Total 8 Évaluations |
Développeur | https://lmichelin.fr |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/lmichelin/open-github-links-in-ide |
URL de la Page d'Aide | https://github.com/lmichelin/open-github-links-in-ide/issues |
Langues Prises en Charge | 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\/*" ] } ] } |