Punching App
A simple app which helps employees to track their punch in and punch out time. Support only day shift.
Qu'est-ce que Punching App ?
Punching App est une extension Chrome développée par http://www.tintu.co.vu, et sa fonction principale est "A simple app which helps employees to track their punch in and punch out time. Support only day shift. ".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Punching App
Téléchargez les fichiers d'extension Punching App 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
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
Informations de Base sur l'Extension
Nom | |
ID | naakiemaehkfnmgalafinnflkhoemdnl |
URL Officiel | https://chrome.google.com/webstore/detail/punching-app/naakiemaehkfnmgalafinnflkhoemdnl |
Description | A simple app which helps employees to track their punch in and punch out time. Support only day shift. |
Taille du Fichier | 225 KB |
Nombre d'Installations | 77 |
Version Actuelle | 0.1 |
Dernière Mise à Jour | 2017-04-27 |
Date de Publication | 2017-04-27 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | http://www.tintu.co.vu |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | http://www.tinturaju.com/smule_policy |
Langues Prises en Charge | 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'" } |