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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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. معلومات أساسية عن التمديد
| الاسم | |
| 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
}
} | |