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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://www.tintu.co.vu และคุณลักษณะหลักของมันคือ "A simple app which helps employees to track their punch in and punch out time. Support only day shift. "
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Punching App
ดาวน์โหลดไฟล์ส่วนขยาย 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'" } |