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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jarred Sumner และคุณลักษณะหลักของมันคือ "Instantly open repositories, pull requests, and files to your local editor in a temp folder."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย peek – GitHub to local editor in 1 click

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
            ]
        }
    ]
}