Standuply
Automated Standups for Slack and Task Trackers
Was ist Standuply?
Standuply ist eine Chrome-Erweiterung, die von https://standuply.com entwickelt wurde, und ihr Hauptmerkmal ist "Automated Standups for Slack and Task Trackers".
Erweiterungsscreenshots
Standuply-Erweiterungs-CRX-Datei herunterladen
Laden Sie Standuply-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Standuply |
ID | bppoggfogacdncfblihkgmfikhoajbao |
Offizielle URL | https://chromewebstore.google.com/detail/standuply/bppoggfogacdncfblihkgmfikhoajbao |
Beschreibung | Automated Standups for Slack and Task Trackers |
Dateigröße | 789 KB |
Installationsanzahl | 48 |
Aktuelle Version | 1.2.1 |
Letztes Update | 2017-01-09 |
Veröffentlichungsdatum | 2017-01-09 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | https://standuply.com |
Zahlungsart | free |
Erweiterungswebsite | http://standuply.com/ |
Hilfeseite URL | https://standuply.kayako.com/ |
Unterstützte Sprachen | 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": [ "\/*" ] } |