Hide Files on GitHub

Hide nonessential files from the file browser

Apa itu Hide Files on GitHub?

Hide Files on GitHub adalah ekstensi Chrome yang dikembangkan oleh Sindre Sorhus, dan fitur utamanya adalah "Hide nonessential files from the file browser".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Hide Files on GitHub

Unduh file ekstensi Hide Files on GitHub dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Hide Files on GitHub Hide Files on GitHub
ID lpnakhpaodhdkleejaehlapdhbgjbddp
URL Resmi https://chromewebstore.google.com/detail/hide-files-on-github/lpnakhpaodhdkleejaehlapdhbgjbddp
Deskripsi Hide nonessential files from the file browser
Ukuran File 50.67 KB
Jumlah Instalasi 655
Versi Saat Ini 21.9.16
Terakhir Diperbarui 2021-09-17
Tanggal Publikasi 2020-04-22
Penilaian 4.36/5 Total 14 Penilaian
Pengembang Sindre Sorhus
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/sindresorhus/hide-files-on-github
URL Halaman Bantuan https://github.com/sindresorhus/hide-files-on-github/issues
URL Halaman Kebijakan Privasi https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md
Bahasa yang Didukung 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"
            ]
        }
    ]
}