Standuply

Automated Standups for Slack and Task Trackers

什麼是Standuply?

Standuply是由https://standuply.com開發的Chrome擴展程式,該擴展的主要功能是“Automated Standups for Slack and Task Trackers”。

擴展截圖

screenshot
screenshot

下載Standuply擴展crx文件

下載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
官方網址 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": [
        "\/*"
    ]
}