Hours Calculator Extension
This ADP-compatible extension calculates the clock-out time for individuals seeking to achieve a certain amount of daily hours.…
Hours Calculator Extensionคืออะไร?
Hours Calculator Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "This ADP-compatible extension calculates the clock-out time for individuals seeking to achieve a certain amount of daily hours.…"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hours Calculator Extension
ดาวน์โหลดไฟล์ส่วนขยาย Hours Calculator Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This ADP-compatible extension calculates the clock-out time for individuals seeking to achieve a certain amount of daily hours. Accounts for lunch breaks. Compatible only with ADP.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Hours Calculator Extension |
ID | pmlkahilhhebcglppiafaoddnpccjakc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/hours-calculator-extensio/pmlkahilhhebcglppiafaoddnpccjakc |
คำอธิบาย | This ADP-compatible extension calculates the clock-out time for individuals seeking to achieve a certain amount of daily hours.… |
ขนาดไฟล์ | 138 KB |
จำนวนการติดตั้ง | 14 |
เวอร์ชันปัจจุบัน | 4.0 |
อัปเดตครั้งล่าสุด | 2017-07-14 |
วันที่เผยแพร่ | 2017-07-14 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Unknown |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hours Calculator Extension", "short_name": "HoursCalc", "version": "4.0", "content_scripts": [ { "matches": [ "https:\/\/workforcenow.adp.com\/*" ], "js": [ "jquery-3.2.1.min.js", "content.js" ] } ], "page_action": { "default_icon": "doge.png", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": false } } |