Time Logger
Easy way to control time spent in the office, calculate overtime and to plan working time.
Qu'est-ce que Time Logger ?
Time Logger est une extension Chrome développée par Jakub Tlałka, et sa fonction principale est "Easy way to control time spent in the office, calculate overtime and to plan working time.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Time Logger
Téléchargez les fichiers d'extension Time Logger au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Time Logger |
ID | dkobldfabdbefflhaahchfegnnfgcikg |
URL Officiel | https://chromewebstore.google.com/detail/time-logger/dkobldfabdbefflhaahchfegnnfgcikg |
Description | Easy way to control time spent in the office, calculate overtime and to plan working time. |
Taille du Fichier | 334 KB |
Nombre d'Installations | 231 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2016-02-20 |
Date de Publication | 2016-02-20 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | Jakub Tlałka |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/jtlalka/time-logger |
Langues Prises en Charge | 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" ] } } |