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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } ] } |