Github Hoverscope
Hoverzoom files and folders in Github
Github Hoverscope란 무엇입니까?
Github Hoverscope은(는) https://jamescui.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hoverzoom files and folders in Github"입니다.
확장 프로그램 스크린샷
Github Hoverscope 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension enables users to conveniently browse through files and directories on Github by providing hover zoom capability over file/folder links. * hover mouse over file or folder links to see its content in tooltip without having to click and redirect the page * contents within the tooltip is clickable and scrollable * tooltip closes automatically on mouse-out from inside the tooltip * tooltip can be closed manually by clicking the close button on the top right of the tooltip
확장 프로그램 기본 정보
이름 | Github Hoverscope |
ID | ejdmejhddfennlaoejkdkkfcjpphkgbh |
공식 URL | https://chromewebstore.google.com/detail/github-hoverscope/ejdmejhddfennlaoejkdkkfcjpphkgbh |
설명 | Hoverzoom files and folders in Github |
파일 크기 | 1.9 MB |
설치 횟수 | 99 |
현재 버전 | 0.0.1 |
최근 업데이트 | 2013-09-25 |
출시 날짜 | 2013-09-25 |
평점 | 4.33/5 총 6 개의 평점 |
개발자 | https://jamescui.com |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Github Hoverscope", "version": "0.0.1", "description": "Hoverzoom files and folders in Github", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "page_action": { "default_icon": { "19": "images\/icon16.png", "38": "images\/icon48.png" }, "default_title": "Github Hoverscope" }, "content_scripts": [ { "matches": [ "http:\/\/github.com\/*", "https:\/\/github.com\/*" ], "css": [ "\/lib\/jquery-ui\/css\/ui-lightness\/jquery-ui-1.10.3.custom.min.css", "\/lib\/css\/jquery.qtip.min.css", "\/lib\/css\/tooltip.css" ], "js": [ "\/lib\/jquery\/jquery-1.10.2.js", "\/lib\/jquery.qtip.min.js", "\/lib\/jquery.hoverIntent.minified.js", "content.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "https:\/\/github.com\/*", "http:\/\/github.com\/*", "tabs" ] } |