NavTree for Github
NavTree for Github is a extension for improve the navigation between files on Github.
NavTree for Github란 무엇입니까?
NavTree for Github은(는) dimaslz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "NavTree for Github is a extension for improve the navigation between files on Github."입니다.
확장 프로그램 스크린샷
NavTree for Github 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
NavTree for Github is a extension for improve the navigation between files on Github. You can see previews to understand better. How to use? Press Ctrl+E to display NavTree Click in cloud to download file or press ALT+Click in file Press ESC to close NavTree Click on icon to display settings and display NavTree manually Click on bottom right icon to display and hide NavTree manually Add your token with permissions [read:org, repo] from github (https://github.com/settings/tokens) and allow private repositories New: Select branch doing click in selector over tree. Resize tree column doing click in right border and drag and drop as you like. You have available the repo in Github. Let me know if you have some issue o idea to improve: https://github.com/dimaslz/navtree
확장 프로그램 기본 정보
이름 | |
ID | hehmfcekejdeohjjckmalfemepbbafbe |
공식 URL | https://chrome.google.com/webstore/detail/navtree-for-github/hehmfcekejdeohjjckmalfemepbbafbe |
설명 | NavTree for Github is a extension for improve the navigation between files on Github. |
파일 크기 | 130 KB |
설치 횟수 | 76 |
현재 버전 | 1.6.0 |
최근 업데이트 | 2016-05-16 |
출시 날짜 | 2016-05-16 |
평점 | 4.33/5 총 3 개의 평점 |
개발자 | dimaslz |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://dimaslz.github.io/navtree/ |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "NavTree for Github", "short_name": "Navtree-github", "author": "Dimas L\u00f3pez Zurita (dimaslz) | [email protected]", "version": "1.6.0", "manifest_version": 2, "description": "NavTree for Github is a extension for improve the navigation between files on Github.", "web_accessible_resources": [ "images\/*.png", "fonts\/*", "*.js" ], "content_security_policy": "script-src 'self'; object-src 'self'", "content_scripts": [ { "all_frames": true, "matches": [ "https:\/\/github.com\/*\/*" ], "css": [ "github.css", "style.css" ], "js": [ "highlight.pack.js", "jquery.min.js", "script.js" ] } ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_popup": "popup\/popup.html", "default_icon": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "permissions": [ "storage", "activeTab", "tabs", "notifications", "http:\/\/*\/", "https:\/\/*\/" ], "background": { "persistent": false, "scripts": [ "jquery.min.js", "background.js" ] } } |