Git First
Takes you to first commit of any GitHub repository
Vad är Git First?
Git First är en Chrome-tillägg utvecklad av https://kamranahmed.info, och dess huvudfunktion är "Takes you to first commit of any GitHub repository".
Tilläggsskärmbilder
Ladda ner Git First-förlängningens CRX-fil
Ladda ner Git First-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Git First |
ID | bkodimdeilmanedhmadkjickmfobpjde |
Officiell webbadress | https://chromewebstore.google.com/detail/git-first/bkodimdeilmanedhmadkjickmfobpjde |
Beskrivning | Takes you to first commit of any GitHub repository |
Filstorlek | 16.82 KB |
Antal Installationer | 188 |
Aktuell Version | 1.0.1 |
Senast Uppdaterad | 2018-11-02 |
Publiceringsdatum | 2018-11-02 |
Betyg | 5.00/5 Totalt 4 Betyg |
Utvecklare | https://kamranahmed.info |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/kamranahmedse/git-first |
Stödda Språk | 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" ] } } |