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.”。
扩展截图
下载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 |
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" ] } ] } |