Gitako - GitHub file tree

File tree for GitHub, and more than that.

Gitako - GitHub file tree là gì?

Gitako - GitHub file tree là một tiện ích mở rộng Chrome được phát triển bởi EnixCoda, và tính năng chính của nó là "File tree for GitHub, and more than that.".

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

screenshot
screenshot
screenshot
screenshot

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

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

                        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.                    

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

Tên Gitako - GitHub file tree Gitako - GitHub file tree
ID giljefjcheohhamkjphiebfjnlphnokk
URL Chính Thức https://chromewebstore.google.com/detail/gitako-github-file-tree/giljefjcheohhamkjphiebfjnlphnokk
Mô tả File tree for GitHub, and more than that.
Kích Thước Tệp 1.86 MB
Số Lần Cài Đặt 10,825
Phiên Bản Hiện Tại 3.11.7
Cập Nhật Lần Cuối 2023-12-15
Ngày Phát Hành 2020-06-28
Đánh Giá 4.92/5 Tổng số 72 Đánh Giá
Nhà Phát Triển EnixCoda
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/EnixCoda/Gitako
URL Trang Trợ Giúp https://github.com/EnixCoda/Gitako/issues
URL Trang Chính Sách Bảo Mật https://github.com/EnixCoda/Gitako/wiki/Privacy-Policy
Ngôn Ngữ Được Hỗ Trợ 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"
}