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 |
Eメール | [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" ] } ] } |