Time Logger
Easy way to control time spent in the office, calculate overtime and to plan working time.
Time Logger란 무엇입니까?
Time Logger은(는) Jakub Tlałka에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easy way to control time spent in the office, calculate overtime and to plan working time."입니다.
확장 프로그램 스크린샷
Time Logger 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Time Logger register time spent in the office based on Chrome events: - active - time actively spent at a computer, - idle - time spent at a computer without action, - locked - time when coputer is logged out.
확장 프로그램 기본 정보
이름 | Time Logger |
ID | dkobldfabdbefflhaahchfegnnfgcikg |
공식 URL | https://chromewebstore.google.com/detail/time-logger/dkobldfabdbefflhaahchfegnnfgcikg |
설명 | Easy way to control time spent in the office, calculate overtime and to plan working time. |
파일 크기 | 334 KB |
설치 횟수 | 231 |
현재 버전 | 1.0 |
최근 업데이트 | 2016-02-20 |
출시 날짜 | 2016-02-20 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | Jakub Tlałka |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/jtlalka/time-logger |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Time Logger", "version": "1.0", "author": "Jakub Tla\u0142ka", "short_name": "Time Logger", "description": "Easy way to control time spent in the office, calculate overtime and to plan working time.", "minimum_chrome_version": "22.0.0.0", "offline_enabled": true, "permissions": [ "idle", "storage", "unlimitedStorage" ], "icons": { "64": "app\/img\/icon-x64.png", "128": "app\/img\/icon-x128.png", "256": "app\/img\/icon-x256.png", "512": "app\/img\/icon-x512.png" }, "options_ui": { "chrome_style": false, "page": "app\/html\/index.html#\/options" }, "browser_action": { "default_title": "Time Logger", "default_icon": "app\/img\/icon-x64.png", "default_popup": "app\/html\/index.html#\/tooltip" }, "background": { "persistent": true, "scripts": [ "libs\/angular\/angular.js", "app\/js\/config\/serverConfig.js", "app\/js\/services\/core\/dataService.js", "app\/js\/services\/core\/eventService.js", "app\/js\/services\/core\/updateService.js", "app\/js\/services\/commonService.js", "app\/js\/services\/propertyService.js", "app\/js\/services\/loggerService.js", "app\/js\/services\/storageService.js", "app\/js\/services\/dao\/optionsDao.js", "app\/js\/services\/dao\/statusDao.js", "app\/js\/services\/dao\/historyDao.js" ] } } |