Punching App
A simple app which helps employees to track their punch in and punch out time. Support only day shift.
Wat is Punching App?
Punching App is een Chrome-extensie ontwikkeld door http://www.tintu.co.vu, en de belangrijkste functie is "A simple app which helps employees to track their punch in and punch out time. Support only day shift. ".
Extensie Screenshots
Download het CRX-bestand van de extensie Punching App
Download Punching App-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | |
ID | naakiemaehkfnmgalafinnflkhoemdnl |
Officiële URL | https://chrome.google.com/webstore/detail/punching-app/naakiemaehkfnmgalafinnflkhoemdnl |
Beschrijving | A simple app which helps employees to track their punch in and punch out time. Support only day shift. |
Bestandsgrootte | 225 KB |
Aantal Installaties | 77 |
Huidige Versie | 0.1 |
Laatst Bijgewerkt | 2017-04-27 |
Publicatiedatum | 2017-04-27 |
Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
Ontwikkelaar | http://www.tintu.co.vu |
[email protected] | |
Betalingswijze | free |
URL van de Privacybeleid Pagina | http://www.tinturaju.com/smule_policy |
Ondersteunde Talen | 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'" } |