Hours Calculator Extension
This ADP-compatible extension calculates the clock-out time for individuals seeking to achieve a certain amount of daily hours.…
Co to jest Hours Calculator Extension?
Hours Calculator Extension to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „This ADP-compatible extension calculates the clock-out time for individuals seeking to achieve a certain amount of daily hours.…”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Hours Calculator Extension
Pobierz pliki rozszerzeń Hours Calculator Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Hours Calculator Extension |
ID | pmlkahilhhebcglppiafaoddnpccjakc |
Oficjalny URL | https://chromewebstore.google.com/detail/hours-calculator-extensio/pmlkahilhhebcglppiafaoddnpccjakc |
Opis | This ADP-compatible extension calculates the clock-out time for individuals seeking to achieve a certain amount of daily hours.… |
Rozmiar pliku | 138 KB |
Liczba instalacji | 14 |
Aktualna Wersja | 4.0 |
Ostatnia Aktualizacja | 2017-07-14 |
Data Publikacji | 2017-07-14 |
Ocena | 5.00/5 Łącznie 3 Oceny |
Deweloper | Unknown |
Typ Płatności | free |
Obsługiwane Języki | 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 } } |