Time Logger

Easy way to control time spent in the office, calculate overtime and to plan working time.

¿Qué es Time Logger?

Time Logger es una extensión de Chrome desarrollada por Jakub Tlałka, y su función principal es "Easy way to control time spent in the office, calculate overtime and to plan working time.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Time Logger

Descarga archivos de extensión Time Logger en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Time Logger Time Logger
ID dkobldfabdbefflhaahchfegnnfgcikg
URL Oficial https://chromewebstore.google.com/detail/time-logger/dkobldfabdbefflhaahchfegnnfgcikg
Descripción Easy way to control time spent in the office, calculate overtime and to plan working time.
Tamaño del Archivo 334 KB
Cantidad de Instalaciones 231
Versión Actual 1.0
Última Actualización 2016-02-20
Fecha de Publicación 2016-02-20
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador Jakub Tlałka
Tipo de Pago free
Sitio Web de la Extensión https://github.com/jtlalka/time-logger
Idiomas Soportados 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"
        ]
    }
}