Gitako - GitHub file tree

File tree for GitHub, and more than that.

什麼是Gitako - GitHub file tree?

Gitako - GitHub file tree是由EnixCoda開發的Chrome擴展程式,該擴展的主要功能是“File tree for GitHub, and more than that.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Gitako - GitHub file tree擴展crx文件

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

擴展使用說明

                        Features
- 📂 File tree for repository, commits, and pull requests
- 🔎 Instant file search and navigation
- 🕶️ Support private repositories
- 🧩 Support GitHub enterprise, Gitea, Gitee, and more
- 🏎 Always performant, even in gigantic projects
- ⌨️ Intuitive keyboard navigation
- 📋 Copy snippets and file content
- 🎨 Various icons and official themes support
- 🗂 Support git submodule
- 📏 Fold source code

NO BS POLICY: Gitako doesn't share about your privacy data at all. GitHub access tokens are required only when you access private repositories or exceed GitHub API rate limit. Gitako stores access tokens in your chrome extension storage (not the LocalStorage) and uses them only when authenticate with GitHub.                    

擴展基本資訊

名稱 Gitako - GitHub file tree Gitako - GitHub file tree
ID giljefjcheohhamkjphiebfjnlphnokk
官方網址 https://chromewebstore.google.com/detail/gitako-github-file-tree/giljefjcheohhamkjphiebfjnlphnokk
簡介 File tree for GitHub, and more than that.
檔案大小 1.86 MB
安裝次數 10,825
目前版本 3.11.7
更新時間 2023-12-15
上架時間 2020-06-28
評分 4.92/5 共 72 次評分
開發者 EnixCoda
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/EnixCoda/Gitako
說明頁面URL https://github.com/EnixCoda/Gitako/issues
隱私政策頁面URL https://github.com/EnixCoda/Gitako/wiki/Privacy-Policy
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Gitako - GitHub file tree",
    "icons": {
        "64": "icons\/Gitako-64.png",
        "128": "icons\/Gitako-128.png",
        "256": "icons\/Gitako-256.png"
    },
    "permissions": [
        "storage",
        "contextMenus",
        "activeTab",
        "*:\/\/*.github.com\/*",
        "*:\/\/gitako.enix.one\/*",
        "*:\/\/*.sentry.io\/*"
    ],
    "optional_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "icons\/vscode\/*",
        "content.css"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/Gitako.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "firefox-shim.js",
                "browser-polyfill.js",
                "content.js"
            ]
        }
    ],
    "version": "3.11.7",
    "description": "File tree for GitHub, and more than that.",
    "author": "EnixCoda",
    "homepage_url": "https:\/\/github.com\/EnixCoda\/Gitako"
}