Octotree - GitHub code tree

GitHub on steroids

什麼是Octotree - GitHub code tree?

Octotree - GitHub code tree是由https://octotree.io開發的Chrome擴展程式,該擴展的主要功能是“GitHub on steroids”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Octotree - GitHub code tree擴展crx文件

下載Octotree - GitHub code tree擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Octotree - GitHub code tree Octotree - GitHub code tree
ID bkhaagjahfmjljalopjnoealnfndnagc
官方網址 https://chromewebstore.google.com/detail/octotree-github-code-tree/bkhaagjahfmjljalopjnoealnfndnagc
簡介 GitHub on steroids
檔案大小 3.4 MB
安裝次數 355,738
目前版本 7.11.2
更新時間 2024-01-04
上架時間 2020-07-01
評分 4.86/5 共 1143 次評分
開發者 https://octotree.io
電子郵箱 [email protected]
付費類型 free
擴展官網 https://www.octotree.io/
說明頁面URL https://www.octotree.io/contact
隱私政策頁面URL https://www.octotree.io/privacy
支援的語言 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"
            ]
        }
    ]
}