Punching App
A simple app which helps employees to track their punch in and punch out time. Support only day shift.
¿Qué es Punching App?
Punching App es una extensión de Chrome desarrollada por http://www.tintu.co.vu, y su función principal es "A simple app which helps employees to track their punch in and punch out time. Support only day shift. ".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Punching App
Descarga archivos de extensión Punching App 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
A Simple app which helps to track punch data and make sure to spend necessary hours at office. Author : Tintu C Raju web : http://www.tintu.co.vu
Información Básica de la Extensión
Nombre | |
ID | naakiemaehkfnmgalafinnflkhoemdnl |
URL Oficial | https://chrome.google.com/webstore/detail/punching-app/naakiemaehkfnmgalafinnflkhoemdnl |
Descripción | A simple app which helps employees to track their punch in and punch out time. Support only day shift. |
Tamaño del Archivo | 225 KB |
Cantidad de Instalaciones | 77 |
Versión Actual | 0.1 |
Última Actualización | 2017-04-27 |
Fecha de Publicación | 2017-04-27 |
Calificación | 5.00/5 Total de 3 Calificaciones |
Desarrollador | http://www.tintu.co.vu |
Correo electrónico | [email protected] |
Tipo de Pago | free |
URL de la Página de Política de Privacidad | http://www.tinturaju.com/smule_policy |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Punching App", "version": "0.1", "description": "A simple app which helps employees to track their punch in and punch out time. Support only day shift. ", "permissions": [], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "jquery.min.js", "background.js" ] }, "browser_action": { "default_title": "Punching App", "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/**" ], "js": [ "myscript.js" ] } ], "manifest_version": 2, "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'" } |