GitHub Version Tags

Displays the latest version of a project next to the repo name on GitHub.

Что такое GitHub Version Tags?

GitHub Version Tags - это расширение Chrome, разработанное joeyespo, и его основная функция - "Displays the latest version of a project next to the repo name on GitHub.".

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

screenshot

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

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

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

                        Displays the latest version of a project next to the repo name on GitHub.

Source code is on GitHub http://github.com/joeyespo/github-version-tags                    

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

Название GitHub Version Tags GitHub Version Tags
ID kflokeeiigcmdejejgiajnefnpoaomjh
Официальный URL https://chrome.google.com/webstore/detail/github-version-tags/kflokeeiigcmdejejgiajnefnpoaomjh
Описание Displays the latest version of a project next to the repo name on GitHub.
Размер файла 38.62 KB
Количество установок 126
Текущая Версия 1.1.0
Последнее Обновление 2017-10-01
Дата публикации 2017-10-01
Рейтинг 5.00/5 Всего 1 оценок
Разработчик joeyespo
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://github.com/joeyespo/github-version-tags
URL страницы помощи http://github.com/joeyespo/github-version-tags/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Version Tags",
    "version": "1.1.0",
    "description": "Displays the latest version of a project next to the repo name on GitHub.",
    "author": "Joe Esposito ",
    "icons": {
        "19": "media\/icon_19.png",
        "38": "media\/icon_38.png",
        "48": "media\/icon_48.png",
        "128": "media\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "vendor\/compare-versions.js",
                "content-script.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "https:\/\/api.github.com\/*"
    ]
}