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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easy way to control time spent in the office, calculate overtime and to plan working time."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Time Logger एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } } |