Velocity Tracker
Track your tasks in one click.
Velocity Tracker란 무엇입니까?
Velocity Tracker은(는) https://velocitytrackerapp.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Track your tasks in one click."입니다.
확장 프로그램 스크린샷
Velocity Tracker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Using Trello or Asana? Looking for a tool to track time in Asana or Trello? This is an extension you can use to track time spent on tasks stored in ASANA and Trello trackers. To use it you'll need to sign up at Velocity Tracker website and install this extension. Just open your task in Chrome and click on an extension icon, press 'Start'! Main features: - Track time spent on tasks - You can press 'Pause' and 'Resume' any time (on any page) - Manually add time if you need - Review task details any time (while tracking time) - Add an estimates for each task/card for Trello and Asana VelocityTrackerApp (www.velocitytrackerapp.com) features: - Track not only time, but money you spent and earn - Manage your team - Get financial analysis any time - Review reports Changelog, ver.0.2.29: - Notifications disabled for Saturdays and Sundays
확장 프로그램 기본 정보
이름 | Velocity Tracker |
ID | lkaefaenjpcnjdncekegikjnpcddcldj |
공식 URL | https://chromewebstore.google.com/detail/velocity-tracker/lkaefaenjpcnjdncekegikjnpcddcldj |
설명 | Track your tasks in one click. |
파일 크기 | 1.31 MB |
설치 횟수 | 45 |
현재 버전 | 0.3.3 |
최근 업데이트 | 2016-07-19 |
출시 날짜 | 2016-07-19 |
평점 | 4.00/5 총 4 개의 평점 |
개발자 | https://velocitytrackerapp.com |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://www.velocitytrackerapp.com |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Velocity Tracker", "description": "Track your tasks in one click.", "version": "0.3.3", "background": { "scripts": [ "settings.js", "jquery-2.1.1.min.js", "background.js" ], "persistent": true }, "browser_action": { "default_icon": { "19": "images\/clock-19-off.png", "38": "images\/clock-38-off.png" }, "default_popup": "popup.html", "default_title": "Tracker" }, "content_scripts": [ { "run_at": "document_end", "css": [ "css\/insert.css" ], "js": [ "jquery-2.1.1.min.js", "js\/asana.js" ], "matches": [ "https:\/\/app.asana.com\/*" ] }, { "css": [ "css\/insert.css" ], "js": [ "js\/trello.js" ], "matches": [ "https:\/\/trello.com\/0\/*" ] } ], "icons": { "128": "images\/clock128px.png", "16": "images\/clock16px.png", "32": "images\/clock32px.png" }, "permissions": [ "tabs", "storage", "notifications", "http:\/\/*\/", "https:\/\/*\/" ] } |