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
官方網址 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": [
                ""
            ]
        }
    ]
}