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.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου 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 |
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" ] } ] } |