Octotree - GitHub code tree

GitHub on steroids

Octotree - GitHub code tree là gì?

Octotree - GitHub code tree là một tiện ích mở rộng Chrome được phát triển bởi https://octotree.io, và tính năng chính của nó là "GitHub on steroids".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Octotree - GitHub code tree

Tải xuống các tệp mở rộng Octotree - GitHub code tree 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

                        Browser extension that enhances GitHub code review and exploration.

Features
* Fast IDE-like code tree
* Quick search in tree format 
* Bookmark repos, issues, PRs, files
* Support GitHub themes
* Support private repositories
* High performance, working with repositories of any size

PRO features
* Multiple tabs
* File icon themes
* Code font settings
* Quick PR navigation
* Unlimited bookmarks
* Pull request code review
* Sidebar docking position
* Multiple GitHub accounts
* Support GitHub Enterprise

Learn more: https://www.octotree.io/features

NO BS POLICY: Octotree doesn't track you or share/care about your data at all. GitHub tokens are only needed when you want to access private repositories or exceed GitHub API rate limit. Octotree stores tokens in your browser storage and only uses them to authenticate with GitHub.                    

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

Tên Octotree - GitHub code tree Octotree - GitHub code tree
ID bkhaagjahfmjljalopjnoealnfndnagc
URL Chính Thức https://chromewebstore.google.com/detail/octotree-github-code-tree/bkhaagjahfmjljalopjnoealnfndnagc
Mô tả GitHub on steroids
Kích Thước Tệp 3.4 MB
Số Lần Cài Đặt 355,738
Phiên Bản Hiện Tại 7.11.2
Cập Nhật Lần Cuối 2024-01-04
Ngày Phát Hành 2020-07-01
Đánh Giá 4.86/5 Tổng số 1143 Đánh Giá
Nhà Phát Triển https://octotree.io
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.octotree.io/
URL Trang Trợ Giúp https://www.octotree.io/contact
URL Trang Chính Sách Bảo Mật https://www.octotree.io/privacy
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Octotree - GitHub code tree",
    "version": "7.11.2",
    "description": "GitHub on steroids",
    "homepage_url": "https:\/\/www.octotree.io",
    "author": "Team Octotree",
    "manifest_version": 2,
    "minimum_chrome_version": "60",
    "applications": {
        "gecko": {
            "id": "jid1-Om7eJGwA1U8Akg@jetpack",
            "strict_min_version": "55.0"
        }
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon128.png",
        "browser_style": true
    },
    "permissions": [
        "https:\/\/api.github.com\/*",
        "https:\/\/www.octotree.io\/*",
        "storage",
        "contextMenus",
        "activeTab"
    ],
    "optional_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "*.woff2",
        "*.png",
        "*.gif",
        "*.svg"
    ],
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "browser-polyfill.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ]
}