Open GitHub in IDE

Open GitHub files links in your IDE

What is Open GitHub in IDE?

Open GitHub in IDE is a Chrome extension developed by https://lmichelin.fr, and its main feature is "Open GitHub files links in your IDE".

Extension Screenshots

screenshot
screenshot
screenshot

Download Open GitHub in IDE Extension CRX File

Download Open GitHub in IDE extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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!                    

Extension Basic Information

Name Open GitHub in IDE Open GitHub in IDE
ID bmifnnfmccmleigpaolofacllndmfned
Official URL https://chromewebstore.google.com/detail/open-github-in-ide/bmifnnfmccmleigpaolofacllndmfned
Description Open GitHub files links in your IDE
File Size 208 KB
Installation Count 1,069
Current Version 1.2.3
Last Updated 2023-09-23
Publish Date 2020-06-28
Rating 4.25/5 Total 8 Ratings
Developer https://lmichelin.fr
Email [email protected]
Payment Type free
Extension Website https://github.com/lmichelin/open-github-links-in-ide
Help Page URL https://github.com/lmichelin/open-github-links-in-ide/issues
Supported Languages 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\/*"
            ]
        }
    ]
}