Git First
Takes you to first commit of any GitHub repository
Git First란 무엇입니까?
Git First은(는) https://kamranahmed.info에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Takes you to first commit of any GitHub repository"입니다.
확장 프로그램 스크린샷
Git First 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Git First is a chrome extension that takes you to the initial commit of any repository. It adds a context menu item called "Initial Commit" which is shown whenever you are on a repository page and perform a right click. Clicking this button will take you to the first commit of the current repository. Currently, it only supports GitHub, however, support for Gitlab and Bitbucket is under way
확장 프로그램 기본 정보
이름 | Git First |
ID | bkodimdeilmanedhmadkjickmfobpjde |
공식 URL | https://chromewebstore.google.com/detail/git-first/bkodimdeilmanedhmadkjickmfobpjde |
설명 | Takes you to first commit of any GitHub repository |
파일 크기 | 16.82 KB |
설치 횟수 | 188 |
현재 버전 | 1.0.1 |
최근 업데이트 | 2018-11-02 |
출시 날짜 | 2018-11-02 |
평점 | 5.00/5 총 4 개의 평점 |
개발자 | https://kamranahmed.info |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/kamranahmedse/git-first |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Git First", "version": "1.0.1", "manifest_version": 2, "description": "Takes you to first commit of any GitHub repository", "permissions": [ "contextMenus", "activeTab" ], "icons": { "16": "\/icons\/icon16.png", "48": "\/icons\/icon48.png", "128": "\/icons\/icon128.png" }, "browser_action": { "default_title": "Git First", "default_icon": "\/icons\/icon128.png" }, "background": { "scripts": [ "script.js" ] } } |