Hours Calculator Extension
This ADP-compatible extension calculates the clock-out time for individuals seeking to achieve a certain amount of daily hours.…
Vad är Hours Calculator Extension?
Hours Calculator Extension är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "This ADP-compatible extension calculates the clock-out time for individuals seeking to achieve a certain amount of daily hours.…".
Tilläggsskärmbilder
Ladda ner Hours Calculator Extension-förlängningens CRX-fil
Ladda ner Hours Calculator Extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | pmlkahilhhebcglppiafaoddnpccjakc |
| Officiell webbadress | https://chromewebstore.google.com/detail/hours-calculator-extensio/pmlkahilhhebcglppiafaoddnpccjakc |
| Beskrivning | This ADP-compatible extension calculates the clock-out time for individuals seeking to achieve a certain amount of daily hours.… |
| Filstorlek | 138 KB |
| Antal Installationer | 14 |
| Aktuell Version | 4.0 |
| Senast Uppdaterad | 2017-07-14 |
| Publiceringsdatum | 2017-07-14 |
| Betyg | 5.00/5 Totalt 3 Betyg |
| Utvecklare | Unknown |
| Betalningssätt | free |
| Stödda Språk | 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
}
} | |