Hide Files on GitHub

Hide nonessential files from the file browser

Co to jest Hide Files on GitHub?

Hide Files on GitHub to rozszerzenie Chrome opracowane przez Sindre Sorhus, a jego główną funkcją jest „Hide nonessential files from the file browser”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Hide Files on GitHub

Pobierz pliki rozszerzeń Hide Files on GitHub w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Hide Files on GitHub Hide Files on GitHub
ID lpnakhpaodhdkleejaehlapdhbgjbddp
Oficjalny URL https://chromewebstore.google.com/detail/hide-files-on-github/lpnakhpaodhdkleejaehlapdhbgjbddp
Opis Hide nonessential files from the file browser
Rozmiar pliku 50.67 KB
Liczba instalacji 655
Aktualna Wersja 21.9.16
Ostatnia Aktualizacja 2021-09-17
Data Publikacji 2020-04-22
Ocena 4.36/5 Łącznie 14 Oceny
Deweloper Sindre Sorhus
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/sindresorhus/hide-files-on-github
Adres URL Strony Pomocy https://github.com/sindresorhus/hide-files-on-github/issues
Adres URL Strony Polityki Prywatności https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md
Obsługiwane Języki 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"
            ]
        }
    ]
}