A-Tree - Github review helper

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

Cos'è A-Tree - Github review helper?

A-Tree - Github review helper è un'estensione di Chrome sviluppata da TimWei5566, e la sua funzione principale è "A-Tree - Github review helper (Code browsing & Pull requests reviewing)".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione A-Tree - Github review helper

Scarica i file di estensione A-Tree - Github review helper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        🚀 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.                    

Informazioni di Base sull'Estensione

Nome A-Tree - Github review helper A-Tree - Github review helper
ID niogapfhnkbjmpnnobldcekclbgkbiah
URL Ufficiale https://chromewebstore.google.com/detail/a-tree-github-review-help/niogapfhnkbjmpnnobldcekclbgkbiah
Descrizione A-Tree - Github review helper (Code browsing & Pull requests reviewing)
Dimensione del File 573 KB
Conteggio Installazioni 182
Versione Corrente 1.2.1
Ultimo Aggiornamento 2022-06-30
Data di Pubblicazione 2021-11-26
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore TimWei5566
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/shinenic/a-tree
URL della Pagina di Aiuto https://github.com/shinenic/a-tree
Lingue Supportate 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": [
                ""
            ]
        }
    ]
}