Repositree
Browser Extension that helps to explore Github repository
Что такое Repositree?
Repositree - это расширение Chrome, разработанное saudchougle, и его основная функция - "Browser Extension that helps to explore Github repository".
Снимки экрана расширения
Скачать файл CRX расширения Repositree
Скачайте файлы расширений Repositree в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | Repositree |
ID | lafjldoccjnjlcmdhmniholdpjkbgajo |
Официальный URL | https://chromewebstore.google.com/detail/repositree/lafjldoccjnjlcmdhmniholdpjkbgajo |
Описание | Browser Extension that helps to explore Github repository |
Размер файла | 314 KB |
Количество установок | 146 |
Текущая Версия | 1.6.2 |
Последнее Обновление | 2021-07-05 |
Дата публикации | 2020-11-13 |
Рейтинг | 5.00/5 Всего 8 оценок |
Разработчик | saudchougle |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/chouglesaud/repositree |
URL страницы помощи | https://github.com/chouglesaud/repositree |
Поддерживаемые языки | 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\/*\/*" ] } ] } |