Standuply

Automated Standups for Slack and Task Trackers

Что такое Standuply?

Standuply - это расширение Chrome, разработанное https://standuply.com, и его основная функция - "Automated Standups for Slack and Task Trackers".

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

screenshot
screenshot

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

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

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

                        Standuply is a bot that automatically runs standup meetings by interviewing your team members in Slack and then delivers the results to your Task Tracker and to Slack. You set up a report once and then this bot does it all.

You can have one single account in Standuply for all your Slack teams. At the same time, everybody within your company can have separate accounts with their own reports.                    

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

Название Standuply Standuply
ID bppoggfogacdncfblihkgmfikhoajbao
Официальный URL https://chromewebstore.google.com/detail/standuply/bppoggfogacdncfblihkgmfikhoajbao
Описание Automated Standups for Slack and Task Trackers
Размер файла 789 KB
Количество установок 48
Текущая Версия 1.2.1
Последнее Обновление 2017-01-09
Дата публикации 2017-01-09
Рейтинг 5.00/5 Всего 1 оценок
Разработчик https://standuply.com
Тип оплаты free
Официальный сайт расширения http://standuply.com/
URL страницы помощи https://standuply.kayako.com/
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Standuply",
    "description": "Automated Standups for Slack and Task Trackers",
    "version": "1.2.1",
    "icons": {
        "16": "16.png",
        "48": "48.png"
    },
    "browser_action": {
        "default_icon": "16.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "declarativeContent"
    ],
    "optional_permissions": [
        "*:\/\/*\/"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/trello.com\/*",
                "https:\/\/*.wrike.com\/workspace.htm",
                "https:\/\/*.basecamp.com\/*",
                "https:\/\/*.pivotaltracker.com\/*",
                "https:\/\/*.app.asana.com\/*"
            ],
            "js": [
                "polyfills.js",
                "vendor.js",
                "shared.js",
                "app.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "polyfills.js",
            "vendor.js",
            "chrome-event-page.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "\/*"
    ]
}