Hours Calculator Extension

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

什麼是Hours Calculator Extension?

Hours Calculator Extension是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“This ADP-compatible extension calculates the clock-out time for individuals seeking to achieve a certain amount of daily hours.…”。

擴展截圖

screenshot

下載Hours Calculator Extension擴展crx文件

下載Hours Calculator Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Hours Calculator Extension Hours Calculator Extension
ID pmlkahilhhebcglppiafaoddnpccjakc
官方網址 https://chromewebstore.google.com/detail/hours-calculator-extensio/pmlkahilhhebcglppiafaoddnpccjakc
簡介 This ADP-compatible extension calculates the clock-out time for individuals seeking to achieve a certain amount of daily hours.…
檔案大小 138 KB
安裝次數 14
目前版本 4.0
更新時間 2017-07-14
上架時間 2017-07-14
評分 5.00/5 共 3 次評分
開發者 Unknown
付費類型 free
支援的語言 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
    }
}