Hours Calculator Extension

This ADP-compatible extension calculates the clock-out time for individuals seeking to achieve a certain amount of daily hours.…

Cos'è Hours Calculator Extension?

Hours Calculator Extension è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "This ADP-compatible extension calculates the clock-out time for individuals seeking to achieve a certain amount of daily hours.…".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Hours Calculator Extension

Scarica i file di estensione Hours Calculator Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Hours Calculator Extension Hours Calculator Extension
ID pmlkahilhhebcglppiafaoddnpccjakc
URL Ufficiale https://chromewebstore.google.com/detail/hours-calculator-extensio/pmlkahilhhebcglppiafaoddnpccjakc
Descrizione This ADP-compatible extension calculates the clock-out time for individuals seeking to achieve a certain amount of daily hours.…
Dimensione del File 138 KB
Conteggio Installazioni 14
Versione Corrente 4.0
Ultimo Aggiornamento 2017-07-14
Data di Pubblicazione 2017-07-14
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate 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
    }
}