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 |
公式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" ] } } |