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文件
下载Git First扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" ] } } |