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文件
下載Time Logger擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" ] } } |