GitHub Searchlite
Search, navigate and download files from any git repository.
GitHub Searchlite란 무엇입니까?
GitHub Searchlite은(는) Piyush Santwani에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Search, navigate and download files from any git repository."입니다.
확장 프로그램 스크린샷
GitHub Searchlite 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Admittedly, GitHub has a "find file" button in place to search for files through the repository. But this plugin does more. GitHub Search-lite searches for files and folders and informs you about the size and path(this is useful when there are multiple files with the same name, in the project) before you select the file/folder to navigate to. Also, once you navigate to a file you may download a copy of the file using the download button. Currently, only files(not folders) can be downloaded. The search box is placed at a convenient position, so that it can be used intuitively. FEEDBACK / BUG Having troubles or improvements ideas? Submit your feedback to [email protected] -------------------------- PLEASE NOTICE: "GitHub Searchlite" is not endorsed by GitHub. GitHub and Chrome, are trademarks of their respective owners.
확장 프로그램 기본 정보
이름 | GitHub Searchlite |
ID | lohekcihaibnhdhlbohicihejbfchikj |
공식 URL | https://chromewebstore.google.com/detail/github-searchlite/lohekcihaibnhdhlbohicihejbfchikj |
설명 | Search, navigate and download files from any git repository. |
파일 크기 | 82.1 KB |
설치 횟수 | 29 |
현재 버전 | 0.0.7 |
최근 업데이트 | 2016-12-18 |
출시 날짜 | 2016-12-18 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Piyush Santwani |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://savegpt.com/privacy_policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub Searchlite", "short_name": "Git Search", "author": "Piyush Santwani", "version": "0.0.7", "manifest_version": 2, "description": "Search, navigate and download files from any git repository.", "icons": { "16": "icons\/github_300.png", "48": "icons\/github_300.png", "128": "icons\/github_300.png" }, "default_locale": "en", "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": true }, "page_action": { "default_icon": "icons\/github_300.png", "default_title": "Github Searchlite" }, "permissions": [ "tabs", "webNavigation", "storage", "https:\/\/github.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/*" ], "css": [ "src\/inject\/inject.css", "src\/css\/easy-autocomplete.min.css" ] }, { "matches": [ "https:\/\/github.com\/*\/*" ], "js": [ "src\/js\/jquery.min.js", "src\/js\/jquery.easy-autocomplete.min.js", "src\/inject\/inject.js" ] } ], "web_accessible_resources": [ "src\/js\/jquery.min.js", "src\/js\/jquery.easy-autocomplete.min.js", "src\/css\/easy-autocomplete.min.css" ] } |