Git First
Takes you to first commit of any GitHub repository
Что такое Git First?
Git First - это расширение Chrome, разработанное https://kamranahmed.info, и его основная функция - "Takes you to first commit of any GitHub repository".
Снимки экрана расширения
Скачать файл CRX расширения Git First
Скачайте файлы расширений 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 |
Официальный URL | 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" ] } } |