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은(는) TimWei5566에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A-Tree - Github review helper (Code browsing & Pull requests reviewing)"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

A-Tree - Github review helper 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        🚀 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": [
                ""
            ]
        }
    ]
}