Punching App
A simple app which helps employees to track their punch in and punch out time. Support only day shift.
Cos'è Punching App?
Punching App è un'estensione di Chrome sviluppata da http://www.tintu.co.vu, e la sua funzione principale è "A simple app which helps employees to track their punch in and punch out time. Support only day shift. ".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Punching App
Scarica i file di estensione Punching App in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | naakiemaehkfnmgalafinnflkhoemdnl |
URL Ufficiale | https://chrome.google.com/webstore/detail/punching-app/naakiemaehkfnmgalafinnflkhoemdnl |
Descrizione | A simple app which helps employees to track their punch in and punch out time. Support only day shift. |
Dimensione del File | 225 KB |
Conteggio Installazioni | 77 |
Versione Corrente | 0.1 |
Ultimo Aggiornamento | 2017-04-27 |
Data di Pubblicazione | 2017-04-27 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | http://www.tintu.co.vu |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | http://www.tinturaju.com/smule_policy |
Lingue Supportate | 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'" } |