Hide Files on GitHub

Hide nonessential files from the file browser

Hide Files on GitHub là gì?

Hide Files on GitHub là một tiện ích mở rộng Chrome được phát triển bởi Sindre Sorhus, và tính năng chính của nó là "Hide nonessential files from the file browser".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Hide Files on GitHub

Tải xuống các tệp mở rộng Hide Files on GitHub dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Hide Files on GitHub Hide Files on GitHub
ID lpnakhpaodhdkleejaehlapdhbgjbddp
URL Chính Thức https://chromewebstore.google.com/detail/hide-files-on-github/lpnakhpaodhdkleejaehlapdhbgjbddp
Mô tả Hide nonessential files from the file browser
Kích Thước Tệp 50.67 KB
Số Lần Cài Đặt 655
Phiên Bản Hiện Tại 21.9.16
Cập Nhật Lần Cuối 2021-09-17
Ngày Phát Hành 2020-04-22
Đánh Giá 4.36/5 Tổng số 14 Đánh Giá
Nhà Phát Triển Sindre Sorhus
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/sindresorhus/hide-files-on-github
URL Trang Trợ Giúp https://github.com/sindresorhus/hide-files-on-github/issues
URL Trang Chính Sách Bảo Mật https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}