Github Open With

Open your Github repository with 3rd party web IDEs

Github Open With क्या है?

Github Open With nir द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Open your Github repository with 3rd party web IDEs"।

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

screenshot
screenshot

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

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

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

                        Chrome extension that helps you open Github repositories in a different 3rd party IDES.
 When navigating to any github repository, you can click on the green code button and see new options:
- Open in Github Dev
- Open in Github1s
- Open in StackBlitz
- Open in CodeSandbox                    

एक्सटेंशन की मूल जानकारी

नाम Github Open With Github Open With
ID dggpihfahccepeedgkckjlcfgnfbjofe
आधिकारिक URL https://chromewebstore.google.com/detail/github-open-with/dggpihfahccepeedgkckjlcfgnfbjofe
विवरण Open your Github repository with 3rd party web IDEs
फ़ाइल का आकार 11.29 KB
स्थापना संख्या 194
वर्तमान संस्करण 1.2.0
अंतिम अपडेट 2023-09-19
प्रकाशन तिथि 2021-06-12
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर nir
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/nirtamir2/github-open-repository-with
सहायता पृष्ठ URL https://github.com/nirtamir2/github-open-repository-with
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Github Open With",
    "version": "1.2.0",
    "description": "Open your Github repository with 3rd party web IDEs",
    "author": "Nir Tamir",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "homepage_url": "https:\/\/github.com\/nirtamir2\/github-open-with",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.github.com\/*\/*",
                "https:\/\/*.github.com\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "contentScript.js"
            ]
        }
    ]
}