Gitako - GitHub file tree

File tree for GitHub, and more than that.

Что такое Gitako - GitHub file tree?

Gitako - GitHub file tree - это расширение Chrome, разработанное EnixCoda, и его основная функция - "File tree for GitHub, and more than that.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Gitako - GitHub file tree

Скачайте файлы расширений 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
Официальный URL 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"
}