Pull Requests Counter

This extension shows the number of Pull Requests assigned to you.

Что такое Pull Requests Counter?

Pull Requests Counter - это расширение Chrome, разработанное Alessandro Rodi, и его основная функция - "This extension shows the number of Pull Requests assigned to you.".

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

screenshot

Скачать файл CRX расширения Pull Requests Counter

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

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

                        This extensions allow you to see the number of Open Pull Requests assigned to you on GitHub.
Don't loose a PullRequest anymore! Make other people happy not forgetting their Pull Requests.
This extension counts also the number of reviews requested from you.                    

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

Название Pull Requests Counter Pull Requests Counter
ID nabnimigmblhomjpopdohkaelngdammf
Официальный URL https://chrome.google.com/webstore/detail/pull-requests-counter/nabnimigmblhomjpopdohkaelngdammf
Описание This extension shows the number of Pull Requests assigned to you.
Размер файла 9.16 KB
Количество установок 93
Текущая Версия 1.3.1
Последнее Обновление 2017-09-15
Дата публикации 2017-09-15
Рейтинг 4.80/5 Всего 5 оценок
Разработчик Alessandro Rodi
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/renuo/pull-requests-counter
URL страницы помощи https://github.com/renuo/pull-requests-counter/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "Renuo GmbH",
    "name": "Pull Requests Counter",
    "description": "This extension shows the number of Pull Requests assigned to you.",
    "version": "1.3.1",
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "extension.js"
        ]
    },
    "permissions": [
        "activeTab",
        "https:\/\/api.github.com\/",
        "alarms",
        "storage",
        "tabs"
    ]
}