Git First
Takes you to first commit of any GitHub repository
Hvad er Git First?
Git First er en Chrome-udvidelse udviklet af https://kamranahmed.info, og dens hovedfunktion er "Takes you to first commit of any GitHub repository".
Udvidelsesskærmbilleder
Download Git First-udvidelses-CRX-fil
Download Git First-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | Git First |
ID | bkodimdeilmanedhmadkjickmfobpjde |
Officiel URL | https://chromewebstore.google.com/detail/git-first/bkodimdeilmanedhmadkjickmfobpjde |
Beskrivelse | Takes you to first commit of any GitHub repository |
Filstørrelse | 16.82 KB |
Antal Installationer | 188 |
Nuværende Version | 1.0.1 |
Senest Opdateret | 2018-11-02 |
Udgivelsesdato | 2018-11-02 |
Bedømmelse | 5.00/5 Samlet 4 Bedømmelser |
Udvikler | https://kamranahmed.info |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/kamranahmedse/git-first |
Understøttede Sprog | 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" ] } } |