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によって開発されたChromeの拡張機能で、その主な機能は「Instantly open repositories, pull requests, and files to your local editor in a temp folder.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

peek – GitHub to local editor in 1 click拡張機能のCRXファイルをダウンロード

peek – GitHub to local editor in 1 click拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
            ]
        }
    ]
}