Stash Pull Request Notifier

Stash Pull Request Notifier will let you know when you have pending reviews.

Что такое Stash Pull Request Notifier?

Stash Pull Request Notifier - это расширение Chrome, разработанное Nitai J. Perez, и его основная функция - "Stash Pull Request Notifier will let you know when you have pending reviews.".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения Stash Pull Request Notifier

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

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

                        This is an extension for code reviewers using Atlassian Stash.
Use this to get notified of pending pull requests.

Features:
* Customized view
* Pull request alerts
* Auto login
* Snooze alerts
* Scrum master mode
* My Pull requests

It's all open source, go ahead and contribute:
https://github.com/NitaiPerez/stash-notify                    

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

Название Stash Pull Request Notifier Stash Pull Request Notifier
ID fmaobhjfejhpefpobcbpehgkgjkijccc
Официальный URL https://chromewebstore.google.com/detail/stash-pull-request-notifi/fmaobhjfejhpefpobcbpehgkgjkijccc
Описание Stash Pull Request Notifier will let you know when you have pending reviews.
Размер файла 487 KB
Количество установок 71
Текущая Версия 3.1.6
Последнее Обновление 2017-04-25
Дата публикации 2017-04-25
Рейтинг 5.00/5 Всего 3 оценок
Разработчик Nitai J. Perez
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/CommonRaven/stash-notify/
URL страницы помощи https://github.com/CommonRaven/stash-notify/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Stash Pull Request Notifier",
    "version": "3.1.6",
    "manifest_version": 2,
    "description": "Stash Pull Request Notifier will let you know when you have pending reviews.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "page": "src\/views\/background.html",
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icons\/logo32.png",
        "default_popup": "src\/views\/browser_action.html"
    },
    "permissions": [
        "notifications",
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "tabs"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
}