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 |
官方網址 | 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'" } |