Time Cost Calculator

This extension can be used to calculate the cost of time spent in a meeting

什么是Time Cost Calculator?

Time Cost Calculator是由Sunny Shahi开发的Chrome扩展程序,该扩展的主要功能是“This extension can be used to calculate the cost of time spent in a meeting”。

扩展截图

screenshot

下载Time Cost Calculator扩展crx文件

下载Time Cost Calculator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        The chrome extension enables users to view the meeting cost based upon the number of attendees accepting the invites and the duration of the meeting. The script parses the duration and meeting attendee numbers from the DOM after the html has been loaded in the chrome browser and calculates and displays the cost which is set by the administator.                    

扩展基本信息

名称 Time Cost Calculator Time Cost Calculator
ID mbkfdbnilfllooepngjaigpmnhfhecbd
官方URL https://chromewebstore.google.com/detail/time-cost-calculator/mbkfdbnilfllooepngjaigpmnhfhecbd
简介 This extension can be used to calculate the cost of time spent in a meeting
文件大小 2.17 MB
安装次数 184
当前版本 0.0.2
更新时间 2021-02-16
上架时间 2021-02-10
开发者 Sunny Shahi
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Time Cost Calculator",
    "version": "0.0.2",
    "manifest_version": 2,
    "description": "This extension can be used to calculate the cost of time spent in a meeting",
    "homepage_url": "https:\/\/www.iterable.com",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/calendar\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}