peek – GitHub to local editor in 1 click

Instantly open repositories, pull requests, and files to your local editor in a temp folder.

peek – GitHub to local editor in 1 click क्या है?

peek – GitHub to local editor in 1 click Jarred Sumner द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Instantly open repositories, pull requests, and files to your local editor in a temp folder."।

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

screenshot
screenshot
screenshot

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

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

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

                        Read, search, and review code from the comfort of your local editor instantly. peek streams the repository to a temp folder and immediately opens your preferred text editor. When you close the editor, the code is deleted.

peek supports Visual Studio Code, Sublime Text, Vim, and more editors.

This extension requires installing git-peek to register the URL handler – head over to https://github.com/jarred-sumner/git-peek to do that.                    

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

नाम peek – GitHub to local editor in 1 click peek – GitHub to local editor in 1 click
ID lipffmbhaajmndiglgmmcfldgolfaooj
आधिकारिक URL https://chromewebstore.google.com/detail/peek-%E2%80%93-github-to-local-ed/lipffmbhaajmndiglgmmcfldgolfaooj
विवरण Instantly open repositories, pull requests, and files to your local editor in a temp folder.
फ़ाइल का आकार 23.25 KB
स्थापना संख्या 67
वर्तमान संस्करण 0.0.2
अंतिम अपडेट 2021-02-17
प्रकाशन तिथि 2021-02-14
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर Jarred Sumner
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/jarred-sumner/peek
सहायता पृष्ठ URL https://github.com/jarred-sumner/git-peek
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "peek \u2013 GitHub to local editor in 1 click",
    "version": "0.0.2",
    "manifest_version": 2,
    "description": "Instantly open repositories, pull requests, and files to your local editor in a temp folder.",
    "homepage_url": "https:\/\/github.com\/Jarred-Sumner\/git-peek-chrome-extension",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "dist\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "https:\/\/*.github.com\/*",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.github.com\/*"
            ],
            "js": [
                "dist\/inject\/inject.js"
            ],
            "css": [
                "css\/styles.css"
            ]
        }
    ]
}