Repositree
Browser Extension that helps to explore Github repository
Co to jest Repositree?
Repositree to rozszerzenie Chrome opracowane przez saudchougle, a jego główną funkcją jest „Browser Extension that helps to explore Github repository”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Repositree
Pobierz pliki rozszerzeń Repositree w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Ctrl + B Toggle Side Bar Visibility Features - Clean UI - IDE-like code tree for GitHub (Public and Private) repositories. - Left & Right Dock Location. - Resizable Layout. - Github Light, Dark, Dimmed & Dark high contrast themes. - Bookmark - github1s(VSCode) mode. - More Feature Coming Soon... Privacy Policy - Repositree doesn't share, collect your data at all. - GitHub Access Token or GitHub Personal Access Token is required only when you access private repositories or exceed the GitHub API rate limit. - Repositree store token in your chrome extension storage, not in the localStorage and use only to authenticate with the GitHub.
Podstawowe informacje o rozszerzeniu
Nazwa | Repositree |
ID | lafjldoccjnjlcmdhmniholdpjkbgajo |
Oficjalny URL | https://chromewebstore.google.com/detail/repositree/lafjldoccjnjlcmdhmniholdpjkbgajo |
Opis | Browser Extension that helps to explore Github repository |
Rozmiar pliku | 314 KB |
Liczba instalacji | 146 |
Aktualna Wersja | 1.6.2 |
Ostatnia Aktualizacja | 2021-07-05 |
Data Publikacji | 2020-11-13 |
Ocena | 5.00/5 Łącznie 8 Oceny |
Deweloper | saudchougle |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/chouglesaud/repositree |
Adres URL Strony Pomocy | https://github.com/chouglesaud/repositree |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Repositree", "author": "Saud Chougle", "minimum_chrome_version": "60", "permissions": [ "storage", "https:\/\/api.github.com\/*" ], "version": "1.6.2", "description": "Browser Extension that helps to explore Github repository", "content_scripts": [ { "run_at": "document_start", "css": [ ".\/style.css" ], "js": [ ".\/content.js" ], "matches": [ "https:\/\/github.com\/*\/*" ] } ] } |