A-Tree - Github review helper

A-Tree - Github review helper (Code browsing & Pull requests reviewing)

O que é A-Tree - Github review helper?

A-Tree - Github review helper é uma extensão do Chrome desenvolvida por TimWei5566, e sua principal característica é "A-Tree - Github review helper (Code browsing & Pull requests reviewing)".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão A-Tree - Github review helper

Baixe arquivos de extensão A-Tree - Github review helper 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

                        🚀 Quick Features
- Tree view for both Github files and pull requests
- Some handy tools for code review (collapse/expand files, mark all files as viewed, etc.)
- Quick search files like VSCode does (command + i or ctrl + i, customizable)
- Switch commits via hotkeys
- Support SPA for Github Pages
- Support private and Enterprise repositories (https://github.com/shinenic/a-tree#fq)


🌲About
Open-source community project
https://github.com/shinenic/a-tree


📝 Permission requirements
  - contextMenus
    For Github enterprise users, we provide a simple way to enable our extension via right click.                    

Informações Básicas da Extensão

Nome A-Tree - Github review helper A-Tree - Github review helper
ID niogapfhnkbjmpnnobldcekclbgkbiah
URL Oficial https://chromewebstore.google.com/detail/a-tree-github-review-help/niogapfhnkbjmpnnobldcekclbgkbiah
Descrição A-Tree - Github review helper (Code browsing & Pull requests reviewing)
Tamanho do Arquivo 573 KB
Contagem de Instalações 182
Versão Atual 1.2.1
Última Atualização 2022-06-30
Data de Publicação 2021-11-26
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor TimWei5566
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/shinenic/a-tree
URL da Página de Ajuda https://github.com/shinenic/a-tree
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "A-Tree - Github review helper",
    "short_name": "A-Tree",
    "version": "1.2.1",
    "description": "A-Tree - Github review helper (Code browsing & Pull requests reviewing)",
    "homepage_url": "https:\/\/github.com\/shinenic\/a-tree",
    "manifest_version": 3,
    "minimum_chrome_version": "88",
    "permissions": [
        "contextMenus"
    ],
    "icons": {
        "128": ".\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}