Punching App
A simple app which helps employees to track their punch in and punch out time. Support only day shift.
什么是Punching App?
Punching App是由http://www.tintu.co.vu开发的Chrome扩展程序,该扩展的主要功能是“A simple app which helps employees to track their punch in and punch out time. Support only day shift. ”。
扩展截图
下载Punching App扩展crx文件
下载Punching App扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | |
ID | naakiemaehkfnmgalafinnflkhoemdnl |
官方URL | https://chrome.google.com/webstore/detail/punching-app/naakiemaehkfnmgalafinnflkhoemdnl |
简介 | A simple app which helps employees to track their punch in and punch out time. Support only day shift. |
文件大小 | 225 KB |
安装次数 | 77 |
当前版本 | 0.1 |
更新时间 | 2017-04-27 |
上架时间 | 2017-04-27 |
评分 | 5.00/5 共3次评分 |
开发者 | http://www.tintu.co.vu |
电子邮箱 | [email protected] |
付费类型 | free |
隐私政策页面URL | http://www.tinturaju.com/smule_policy |
支持的语言 | 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'" } |