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ファイルをダウンロード

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
Eメール [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": [
                ""
            ]
        }
    ]
}