Standuply

Automated Standups for Slack and Task Trackers

Standuply là gì?

Standuply là một tiện ích mở rộng Chrome được phát triển bởi https://standuply.com, và tính năng chính của nó là "Automated Standups for Slack and Task Trackers".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Standuply

Tải xuống các tệp mở rộng Standuply dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Standuply Standuply
ID bppoggfogacdncfblihkgmfikhoajbao
URL Chính Thức https://chromewebstore.google.com/detail/standuply/bppoggfogacdncfblihkgmfikhoajbao
Mô tả Automated Standups for Slack and Task Trackers
Kích Thước Tệp 789 KB
Số Lần Cài Đặt 48
Phiên Bản Hiện Tại 1.2.1
Cập Nhật Lần Cuối 2017-01-09
Ngày Phát Hành 2017-01-09
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://standuply.com
Loại Thanh Toán free
Trang Web Mở Rộng http://standuply.com/
URL Trang Trợ Giúp https://standuply.kayako.com/
Ngôn Ngữ Được Hỗ Trợ 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": [
        "\/*"
    ]
}