Standuply

Automated Standups for Slack and Task Trackers

Qu'est-ce que Standuply ?

Standuply est une extension Chrome développée par https://standuply.com, et sa fonction principale est "Automated Standups for Slack and Task Trackers".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Standuply

Téléchargez les fichiers d'extension Standuply au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Standuply Standuply
ID bppoggfogacdncfblihkgmfikhoajbao
URL Officiel https://chromewebstore.google.com/detail/standuply/bppoggfogacdncfblihkgmfikhoajbao
Description Automated Standups for Slack and Task Trackers
Taille du Fichier 789 KB
Nombre d'Installations 48
Version Actuelle 1.2.1
Dernière Mise à Jour 2017-01-09
Date de Publication 2017-01-09
Évaluation 5.00/5 Total 1 Évaluations
Développeur https://standuply.com
Type de Paiement free
Site Web de l'Extension http://standuply.com/
URL de la Page d'Aide https://standuply.kayako.com/
Langues Prises en Charge 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": [
        "\/*"
    ]
}