Git First
Takes you to first commit of any GitHub repository
Co je Git First?
Git First je rozšíření Chrome vyvinuté https://kamranahmed.info, a jeho hlavní funkcí je „Takes you to first commit of any GitHub repository“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Git First
Stáhněte si soubory rozšíření Git First ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Git First |
ID | bkodimdeilmanedhmadkjickmfobpjde |
Oficiální URL | https://chromewebstore.google.com/detail/git-first/bkodimdeilmanedhmadkjickmfobpjde |
Popis | Takes you to first commit of any GitHub repository |
Velikost souboru | 16.82 KB |
Počet instalací | 188 |
Aktuální Verze | 1.0.1 |
Poslední Aktualizace | 2018-11-02 |
Datum Vydání | 2018-11-02 |
Hodnocení | 5.00/5 Celkem 4 Hodnocení |
Vývojář | https://kamranahmed.info |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/kamranahmedse/git-first |
Podporované Jazyky | 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" ] } } |