A-Tree - Github review helper

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

Что такое A-Tree - Github review helper?

A-Tree - Github review helper - это расширение Chrome, разработанное TimWei5566, и его основная функция - "A-Tree - Github review helper (Code browsing & Pull requests reviewing)".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения A-Tree - Github review helper

Скачайте файлы расширений A-Tree - Github review helper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название A-Tree - Github review helper A-Tree - Github review helper
ID niogapfhnkbjmpnnobldcekclbgkbiah
Официальный URL https://chromewebstore.google.com/detail/a-tree-github-review-help/niogapfhnkbjmpnnobldcekclbgkbiah
Описание A-Tree - Github review helper (Code browsing & Pull requests reviewing)
Размер файла 573 KB
Количество установок 182
Текущая Версия 1.2.1
Последнее Обновление 2022-06-30
Дата публикации 2021-11-26
Рейтинг 5.00/5 Всего 4 оценок
Разработчик TimWei5566
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/shinenic/a-tree
URL страницы помощи https://github.com/shinenic/a-tree
Поддерживаемые языки 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": [
                ""
            ]
        }
    ]
}