peek – GitHub to local editor in 1 click
Instantly open repositories, pull requests, and files to your local editor in a temp folder.
Hvad er peek – GitHub to local editor in 1 click?
peek – GitHub to local editor in 1 click er en Chrome-udvidelse udviklet af Jarred Sumner, og dens hovedfunktion er "Instantly open repositories, pull requests, and files to your local editor in a temp folder.".
Udvidelsesskærmbilleder
Download peek – GitHub to local editor in 1 click-udvidelses-CRX-fil
Download peek – GitHub to local editor in 1 click-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | peek – GitHub to local editor in 1 click |
ID | lipffmbhaajmndiglgmmcfldgolfaooj |
Officiel URL | https://chromewebstore.google.com/detail/peek-%E2%80%93-github-to-local-ed/lipffmbhaajmndiglgmmcfldgolfaooj |
Beskrivelse | Instantly open repositories, pull requests, and files to your local editor in a temp folder. |
Filstørrelse | 23.25 KB |
Antal Installationer | 67 |
Nuværende Version | 0.0.2 |
Senest Opdateret | 2021-02-17 |
Udgivelsesdato | 2021-02-14 |
Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
Udvikler | Jarred Sumner |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/jarred-sumner/peek |
Hjælpeside-URL | https://github.com/jarred-sumner/git-peek |
Understøttede Sprog | 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" ] } ] } |