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
官方URL 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
    }
}