Standuply

Automated Standups for Slack and Task Trackers

Cos'è Standuply?

Standuply è un'estensione di Chrome sviluppata da https://standuply.com, e la sua funzione principale è "Automated Standups for Slack and Task Trackers".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Standuply

Scarica i file di estensione Standuply in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Standuply Standuply
ID bppoggfogacdncfblihkgmfikhoajbao
URL Ufficiale https://chromewebstore.google.com/detail/standuply/bppoggfogacdncfblihkgmfikhoajbao
Descrizione Automated Standups for Slack and Task Trackers
Dimensione del File 789 KB
Conteggio Installazioni 48
Versione Corrente 1.2.1
Ultimo Aggiornamento 2017-01-09
Data di Pubblicazione 2017-01-09
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://standuply.com
Tipo di Pagamento free
Sito Web dell'Estensione http://standuply.com/
URL della Pagina di Aiuto https://standuply.kayako.com/
Lingue Supportate 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": [
        "\/*"
    ]
}