Repositree

Browser Extension that helps to explore Github repository

O que é Repositree?

Repositree é uma extensão do Chrome desenvolvida por saudchougle, e sua principal característica é "Browser Extension that helps to explore Github repository".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Repositree

Baixe arquivos de extensão Repositree no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Repositree Repositree
ID lafjldoccjnjlcmdhmniholdpjkbgajo
URL Oficial https://chromewebstore.google.com/detail/repositree/lafjldoccjnjlcmdhmniholdpjkbgajo
Descrição Browser Extension that helps to explore Github repository
Tamanho do Arquivo 314 KB
Contagem de Instalações 146
Versão Atual 1.6.2
Última Atualização 2021-07-05
Data de Publicação 2020-11-13
Classificação 5.00/5 Total de 8 Avaliações
Desenvolvedor saudchougle
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/chouglesaud/repositree
URL da Página de Ajuda https://github.com/chouglesaud/repositree
Idiomas Suportados 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\/*\/*"
            ]
        }
    ]
}