Hide Files on GitHub

Hide nonessential files from the file browser

Что такое Hide Files on GitHub?

Hide Files on GitHub - это расширение Chrome, разработанное Sindre Sorhus, и его основная функция - "Hide nonessential files from the file browser".

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

screenshot
screenshot

Скачать файл CRX расширения Hide Files on GitHub

Скачайте файлы расширений Hide Files on GitHub в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        You can customize which files to hide and you can make it more minimal in the extension's options page. This extension also works with self-hosted GitHub Enterprise.                    

Основная информация о расширении

Название Hide Files on GitHub Hide Files on GitHub
ID lpnakhpaodhdkleejaehlapdhbgjbddp
Официальный URL https://chromewebstore.google.com/detail/hide-files-on-github/lpnakhpaodhdkleejaehlapdhbgjbddp
Описание Hide nonessential files from the file browser
Размер файла 50.67 KB
Количество установок 655
Текущая Версия 21.9.16
Последнее Обновление 2021-09-17
Дата публикации 2020-04-22
Рейтинг 4.36/5 Всего 14 оценок
Разработчик Sindre Sorhus
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/sindresorhus/hide-files-on-github
URL страницы помощи https://github.com/sindresorhus/hide-files-on-github/issues
URL страницы политики конфиденциальности https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hide Files on GitHub",
    "version": "21.9.16",
    "description": "Hide nonessential files from the file browser",
    "homepage_url": "https:\/\/github.com\/sindresorhus\/hide-files-on-github",
    "manifest_version": 2,
    "minimum_chrome_version": "69",
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "62.0"
        }
    },
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "https:\/\/github.com\/*\/*",
        "storage",
        "contextMenus",
        "activeTab"
    ],
    "optional_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/github.com\/*\/*"
            ],
            "exclude_matches": [
                "https:\/\/github.com\/*\/dotfiles*"
            ],
            "css": [
                "hide-files-on-github.css"
            ],
            "js": [
                "hide-files-on-github.js"
            ]
        }
    ]
}