Hide Files on GitHub
Hide nonessential files from the file browser
什么是Hide Files on GitHub?
Hide Files on GitHub是由Sindre Sorhus开发的Chrome扩展程序,该扩展的主要功能是“Hide nonessential files from the file browser”。
扩展截图
下载Hide Files on GitHub扩展crx文件
下载Hide Files on GitHub扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Hide Files on GitHub |
ID | lpnakhpaodhdkleejaehlapdhbgjbddp |
官方URL | https://chromewebstore.google.com/detail/hide-files-on-github/lpnakhpaodhdkleejaehlapdhbgjbddp |
简介 | Hide nonessential files from the file browser |
文件大小 | 50.67 KB |
安装次数 | 655 |
当前版本 | 21.9.16 |
更新时间 | 2021-09-17 |
上架时间 | 2020-04-22 |
评分 | 4.36/5 共14次评分 |
开发者 | Sindre Sorhus |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/sindresorhus/hide-files-on-github |
帮助页面URL | https://github.com/sindresorhus/hide-files-on-github/issues |
隐私政策页面URL | https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md |
支持的语言 | 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" ] } ] } |