Github compare tags

Adds tags to the compare page of Github.

Что такое Github compare tags?

Github compare tags - это расширение Chrome, разработанное marpo60, и его основная функция - "Adds tags to the compare page of Github.".

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

screenshot

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

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

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

                        Add into the dropdown of Github compare page the tags of the repositories.                    

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

Название Github compare tags Github compare tags
ID pjkolicadkdcfgjjoopdpleenckeajkk
Официальный URL https://chromewebstore.google.com/detail/github-compare-tags/pjkolicadkdcfgjjoopdpleenckeajkk
Описание Adds tags to the compare page of Github.
Размер файла 8.43 KB
Количество установок 62
Текущая Версия 0.0.6
Последнее Обновление 2019-06-01
Дата публикации 2019-06-01
Рейтинг 5.00/5 Всего 1 оценок
Разработчик marpo60
Тип оплаты free
Официальный сайт расширения https://github.com/marpo60/github-compare-tags
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github compare tags",
    "version": "0.0.6",
    "manifest_version": 2,
    "description": "Adds tags to the compare page of Github.",
    "icons": {
        "16": "icons\/icon.png",
        "48": "icons\/icon.png",
        "128": "icons\/icon.png"
    },
    "permissions": [
        "storage",
        "https:\/\/github.com\/*"
    ],
    "background": {
        "scripts": [
            "src\/hot-reload.js"
        ]
    },
    "options_ui": {
        "page": "src\/options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "src\/inject.js"
            ]
        }
    ]
}