Punching App
A simple app which helps employees to track their punch in and punch out time. Support only day shift.
What is Punching App?
Punching App is a Chrome extension developed by http://www.tintu.co.vu, and its main feature is "A simple app which helps employees to track their punch in and punch out time. Support only day shift. ".
Extension Screenshots
Download Punching App Extension CRX File
Download Punching App extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | |
ID | naakiemaehkfnmgalafinnflkhoemdnl |
Official URL | 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. |
File Size | 225 KB |
Installation Count | 77 |
Current Version | 0.1 |
Last Updated | 2017-04-27 |
Publish Date | 2017-04-27 |
Rating | 5.00/5 Total 3 Ratings |
Developer | http://www.tintu.co.vu |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | http://www.tinturaju.com/smule_policy |
Supported Languages | 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'" } |