A-Tree - Github review helper

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

Co to jest A-Tree - Github review helper?

A-Tree - Github review helper to rozszerzenie Chrome opracowane przez TimWei5566, a jego główną funkcją jest „A-Tree - Github review helper (Code browsing & Pull requests reviewing)”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia A-Tree - Github review helper

Pobierz pliki rozszerzeń A-Tree - Github review helper 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

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

Podstawowe informacje o rozszerzeniu

Nazwa A-Tree - Github review helper A-Tree - Github review helper
ID niogapfhnkbjmpnnobldcekclbgkbiah
Oficjalny URL https://chromewebstore.google.com/detail/a-tree-github-review-help/niogapfhnkbjmpnnobldcekclbgkbiah
Opis A-Tree - Github review helper (Code browsing & Pull requests reviewing)
Rozmiar pliku 573 KB
Liczba instalacji 182
Aktualna Wersja 1.2.1
Ostatnia Aktualizacja 2022-06-30
Data Publikacji 2021-11-26
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper TimWei5566
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/shinenic/a-tree
Adres URL Strony Pomocy https://github.com/shinenic/a-tree
Obsługiwane Języki 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": [
                ""
            ]
        }
    ]
}