Standuply
Automated Standups for Slack and Task Trackers
Standuply란 무엇입니까?
Standuply은(는) https://standuply.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automated Standups for Slack and Task Trackers"입니다.
확장 프로그램 스크린샷
Standuply 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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/ |
도움말 페이지 URL | 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": [ "\/*" ] } |