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
公式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": [
        "\/*"
    ]
}