GitHub compare helper

Adds UI to GitHub commits pages to easier create GitHub compare urls

Что такое GitHub compare helper?

GitHub compare helper - это расширение Chrome, разработанное Henrik, и его основная функция - "Adds UI to GitHub commits pages to easier create GitHub compare urls".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения GitHub compare helper

Скачайте файлы расширений GitHub compare helper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Manually typing the GitHub compare url takes too much time. Use this simple UI add-on to do it much faster!

Note: 

Works the same way GitHub compare urls are normally generated i.e. from the first SHA of a commit to (but not including) the last SHA of a commit. This means the generated compare url will, for branches, include the top selected commit but not the last selected commit (but the commit before). For pull requests it is the opposite.

NEW! Now also works on pull requests!

-----------------------------------------------------

Source: https://github.com/hengun348/GitHub-compare-helper

Thanks https://github.com/acetrand and https://github.com/bradsk88 for pull request contributions!                    

Основная информация о расширении

Название GitHub compare helper GitHub compare helper
ID cioiakfpohjbldapjdenhmdenmdcdigd
Официальный URL https://chromewebstore.google.com/detail/github-compare-helper/cioiakfpohjbldapjdenhmdenmdcdigd
Описание Adds UI to GitHub commits pages to easier create GitHub compare urls
Размер файла 334 KB
Количество установок 38
Текущая Версия 1.2.1
Последнее Обновление 2020-05-24
Дата публикации 2020-05-24
Рейтинг 3.20/5 Всего 5 оценок
Разработчик Henrik
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub compare helper",
    "version": "1.2.1",
    "description": "Adds UI to GitHub commits pages to easier create GitHub compare urls",
    "author": "Henrik Gunnarsson",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "https:\/\/github.com\/*\/commits\/*"
    ],
    "icons": {
        "19": "icon-19.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "manifest_version": 2
}