Git First
Takes you to first commit of any GitHub repository
What is Git First?
Git First is a Chrome extension developed by https://kamranahmed.info, and its main feature is "Takes you to first commit of any GitHub repository".
Extension Screenshots
Download Git First Extension CRX File
Download Git First extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Git First |
ID | bkodimdeilmanedhmadkjickmfobpjde |
Official URL | https://chromewebstore.google.com/detail/git-first/bkodimdeilmanedhmadkjickmfobpjde |
Description | Takes you to first commit of any GitHub repository |
File Size | 16.82 KB |
Installation Count | 188 |
Current Version | 1.0.1 |
Last Updated | 2018-11-02 |
Publish Date | 2018-11-02 |
Rating | 5.00/5 Total 4 Ratings |
Developer | https://kamranahmed.info |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/kamranahmedse/git-first |
Supported Languages | 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" ] } } |