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
官方網址 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"
            ]
        }
    ]
}