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 |
官方網址 | 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" ] } ] } |