Hide Files on GitHub
Hide nonessential files from the file browser
What is Hide Files on GitHub?
Hide Files on GitHub is a Chrome extension developed by Sindre Sorhus, and its main feature is "Hide nonessential files from the file browser".
Extension Screenshots
Download Hide Files on GitHub Extension CRX File
Download Hide Files on GitHub extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Hide Files on GitHub |
ID | lpnakhpaodhdkleejaehlapdhbgjbddp |
Official URL | https://chromewebstore.google.com/detail/hide-files-on-github/lpnakhpaodhdkleejaehlapdhbgjbddp |
Description | Hide nonessential files from the file browser |
File Size | 50.67 KB |
Installation Count | 655 |
Current Version | 21.9.16 |
Last Updated | 2021-09-17 |
Publish Date | 2020-04-22 |
Rating | 4.36/5 Total 14 Ratings |
Developer | Sindre Sorhus |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/sindresorhus/hide-files-on-github |
Help Page URL | https://github.com/sindresorhus/hide-files-on-github/issues |
Privacy Policy Page URL | https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md |
Supported Languages | 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" ] } ] } |