Hours Calculator Extension
This ADP-compatible extension calculates the clock-out time for individuals seeking to achieve a certain amount of daily hours.…
Qu'est-ce que Hours Calculator Extension ?
Hours Calculator Extension est une extension Chrome développée par Unknown, et sa fonction principale est "This ADP-compatible extension calculates the clock-out time for individuals seeking to achieve a certain amount of daily hours.…".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Hours Calculator Extension
Téléchargez les fichiers d'extension Hours Calculator Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Hours Calculator Extension |
ID | pmlkahilhhebcglppiafaoddnpccjakc |
URL Officiel | https://chromewebstore.google.com/detail/hours-calculator-extensio/pmlkahilhhebcglppiafaoddnpccjakc |
Description | This ADP-compatible extension calculates the clock-out time for individuals seeking to achieve a certain amount of daily hours.… |
Taille du Fichier | 138 KB |
Nombre d'Installations | 14 |
Version Actuelle | 4.0 |
Dernière Mise à Jour | 2017-07-14 |
Date de Publication | 2017-07-14 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | Unknown |
Type de Paiement | free |
Langues Prises en Charge | 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 } } |