Hide Files on GitHub

Hide nonessential files from the file browser

Co je Hide Files on GitHub?

Hide Files on GitHub je rozšíření Chrome vyvinuté Sindre Sorhus, a jeho hlavní funkcí je „Hide nonessential files from the file browser“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Hide Files on GitHub

Stáhněte si soubory rozšíření Hide Files on GitHub ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Hide Files on GitHub Hide Files on GitHub
ID lpnakhpaodhdkleejaehlapdhbgjbddp
Oficiální URL https://chromewebstore.google.com/detail/hide-files-on-github/lpnakhpaodhdkleejaehlapdhbgjbddp
Popis Hide nonessential files from the file browser
Velikost souboru 50.67 KB
Počet instalací 655
Aktuální Verze 21.9.16
Poslední Aktualizace 2021-09-17
Datum Vydání 2020-04-22
Hodnocení 4.36/5 Celkem 14 Hodnocení
Vývojář Sindre Sorhus
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/sindresorhus/hide-files-on-github
URL Stránky Nápovědy https://github.com/sindresorhus/hide-files-on-github/issues
URL Stránky Zásad Ochrany Soukromí https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md
Podporované Jazyky 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"
            ]
        }
    ]
}