Tree Explorer for Github
Show the file tree for PR's and commits
Tree Explorer for Github란 무엇입니까?
Tree Explorer for Github은(는) Fabio Picheli에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show the file tree for PR's and commits"입니다.
확장 프로그램 스크린샷
Tree Explorer for Github 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Improve GitHub tree explorer adding a file tree on PR's and commits Contribute: https://github.com/picheli20/github-code-tree
확장 프로그램 기본 정보
이름 | Tree Explorer for Github |
ID | caffoilocbbhnkdlpdcfanpbeholjdii |
공식 URL | https://chromewebstore.google.com/detail/tree-explorer-for-github/caffoilocbbhnkdlpdcfanpbeholjdii |
설명 | Show the file tree for PR's and commits |
파일 크기 | 43.13 KB |
설치 횟수 | 552 |
현재 버전 | 1.4.1 |
최근 업데이트 | 2020-12-15 |
출시 날짜 | 2019-04-02 |
평점 | 4.91/5 총 11 개의 평점 |
개발자 | Fabio Picheli |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tree Explorer for Github", "version": "1.4.1", "description": "Show the file tree for PR's and commits", "manifest_version": 2, "permissions": [ "activeTab", "storage", "https:\/\/github.com\/*" ], "browser_action": { "default_icon": "icon.png", "default_popup": "app\/popup\/index.html" }, "optional_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "lib\/jquery-1.11.1.min.js", "app\/background\/icons.js", "app\/background\/style.js", "app\/background\/index.js" ] } ] } |