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 |
官方網址 | 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" ] } } |