Standuply
Automated Standups for Slack and Task Trackers
ما هو Standuply؟
Standuply هو إضافة Chrome تم تطويرها بواسطة https://standuply.com، والميزة الرئيسية لها هي "Automated Standups for Slack and Task Trackers".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Standuply
قم بتنزيل ملفات الامتداد Standuply بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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/ |
عنوان صفحة المساعدة | 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": [ "\/*" ] } |