Hours Calculator Extension
This ADP-compatible extension calculates the clock-out time for individuals seeking to achieve a certain amount of daily hours.…
Hvad er Hours Calculator Extension?
Hours Calculator Extension er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "This ADP-compatible extension calculates the clock-out time for individuals seeking to achieve a certain amount of daily hours.…".
Udvidelsesskærmbilleder
Download Hours Calculator Extension-udvidelses-CRX-fil
Download Hours Calculator Extension-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
| Navn | |
| ID | pmlkahilhhebcglppiafaoddnpccjakc |
| Officiel URL | https://chromewebstore.google.com/detail/hours-calculator-extensio/pmlkahilhhebcglppiafaoddnpccjakc |
| Beskrivelse | This ADP-compatible extension calculates the clock-out time for individuals seeking to achieve a certain amount of daily hours.… |
| Filstørrelse | 138 KB |
| Antal Installationer | 14 |
| Nuværende Version | 4.0 |
| Senest Opdateret | 2017-07-14 |
| Udgivelsesdato | 2017-07-14 |
| Bedømmelse | 5.00/5 Samlet 3 Bedømmelser |
| Udvikler | Unknown |
| Betalingsmetode | free |
| Understøttede Sprog | 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
}
} | |