github-find
A plugin for searcing within Github repos.
github-find란 무엇입니까?
github-find은(는) Aidan Feldman에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A plugin for searcing within Github repos."입니다.
확장 프로그램 스크린샷
github-find 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
When viewing a repository on the Github website, an Octocat icon will appear in the address bar - press CTL-SHIFT-f and a search box will appear. Check out the source here: https://github.com/afeld/github-find
확장 프로그램 기본 정보
이름 | github-find |
ID | blocadmfchabihonegcgjjikbbmpliph |
공식 URL | https://chromewebstore.google.com/detail/github-find/blocadmfchabihonegcgjjikbbmpliph |
설명 | A plugin for searcing within Github repos. |
파일 크기 | 40.7 KB |
설치 횟수 | 164 |
현재 버전 | 1.0.2 |
최근 업데이트 | 2013-02-18 |
출시 날짜 | 2013-02-17 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Aidan Feldman |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/afeld/github-find |
도움말 페이지 URL | https://github.com/afeld/github-find/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "github-find", "version": "1.0.2", "manifest_version": 2, "icons": { "16": "favicon.ico" }, "description": "A plugin for searcing within Github repos.", "homepage_url": "https:\/\/github.com\/afeld\/github-find", "background": { "scripts": [ "jquery-1.9.1.min.js", "background.js" ], "persistent": false }, "page_action": { "default_icon": "favicon.ico", "default_title": "Click or press Ctrl+Shift+F to search this repository." }, "content_scripts": [ { "matches": [ "*:\/\/github.com\/*\/*" ], "exclude_globs": [ "*github.com\/*\/" ], "js": [ "jquery-1.9.1.min.js", "jquery.ui.position.min.js", "content-keydown.js" ] } ], "permissions": [ "tabs" ] } |