A-Tree - Github review helper

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

A-Tree - Github review helper là gì?

A-Tree - Github review helper là một tiện ích mở rộng Chrome được phát triển bởi TimWei5566, và tính năng chính của nó là "A-Tree - Github review helper (Code browsing & Pull requests reviewing)".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng A-Tree - Github review helper

Tải xuống các tệp mở rộng A-Tree - Github review helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên A-Tree - Github review helper A-Tree - Github review helper
ID niogapfhnkbjmpnnobldcekclbgkbiah
URL Chính Thức https://chromewebstore.google.com/detail/a-tree-github-review-help/niogapfhnkbjmpnnobldcekclbgkbiah
Mô tả A-Tree - Github review helper (Code browsing & Pull requests reviewing)
Kích Thước Tệp 573 KB
Số Lần Cài Đặt 182
Phiên Bản Hiện Tại 1.2.1
Cập Nhật Lần Cuối 2022-06-30
Ngày Phát Hành 2021-11-26
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển TimWei5566
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/shinenic/a-tree
URL Trang Trợ Giúp https://github.com/shinenic/a-tree
Ngôn Ngữ Được Hỗ Trợ 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": [
                ""
            ]
        }
    ]
}