Open GitHub in IDE

Open GitHub files links in your IDE

Open GitHub in IDE क्या है?

Open GitHub in IDE https://lmichelin.fr द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Open GitHub files links in your IDE"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Open GitHub in IDE एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 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\/*"
            ]
        }
    ]
}