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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A-Tree - Github review helper (Code browsing & Pull requests reviewing)"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में A-Tree - Github review helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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": [
                ""
            ]
        }
    ]
}