Git First
Takes you to first commit of any GitHub repository
Was ist Git First?
Git First ist eine Chrome-Erweiterung, die von https://kamranahmed.info entwickelt wurde, und ihr Hauptmerkmal ist "Takes you to first commit of any GitHub repository".
Erweiterungsscreenshots
Git First-Erweiterungs-CRX-Datei herunterladen
Laden Sie Git First-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Git First |
ID | bkodimdeilmanedhmadkjickmfobpjde |
Offizielle URL | https://chromewebstore.google.com/detail/git-first/bkodimdeilmanedhmadkjickmfobpjde |
Beschreibung | Takes you to first commit of any GitHub repository |
Dateigröße | 16.82 KB |
Installationsanzahl | 188 |
Aktuelle Version | 1.0.1 |
Letztes Update | 2018-11-02 |
Veröffentlichungsdatum | 2018-11-02 |
Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
Entwickler | https://kamranahmed.info |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/kamranahmedse/git-first |
Unterstützte Sprachen | 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" ] } } |