peek – GitHub to local editor in 1 click
Instantly open repositories, pull requests, and files to your local editor in a temp folder.
Qu'est-ce que peek – GitHub to local editor in 1 click ?
peek – GitHub to local editor in 1 click est une extension Chrome développée par Jarred Sumner, et sa fonction principale est "Instantly open repositories, pull requests, and files to your local editor in a temp folder.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension peek – GitHub to local editor in 1 click
Téléchargez les fichiers d'extension peek – GitHub to local editor in 1 click au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | peek – GitHub to local editor in 1 click |
ID | lipffmbhaajmndiglgmmcfldgolfaooj |
URL Officiel | https://chromewebstore.google.com/detail/peek-%E2%80%93-github-to-local-ed/lipffmbhaajmndiglgmmcfldgolfaooj |
Description | Instantly open repositories, pull requests, and files to your local editor in a temp folder. |
Taille du Fichier | 23.25 KB |
Nombre d'Installations | 67 |
Version Actuelle | 0.0.2 |
Dernière Mise à Jour | 2021-02-17 |
Date de Publication | 2021-02-14 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | Jarred Sumner |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/jarred-sumner/peek |
URL de la Page d'Aide | https://github.com/jarred-sumner/git-peek |
Langues Prises en Charge | 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" ] } ] } |