Time Cost Calculator

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

¿Qué es Time Cost Calculator?

Time Cost Calculator es una extensión de Chrome desarrollada por Sunny Shahi, y su función principal es "This extension can be used to calculate the cost of time spent in a meeting".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Time Cost Calculator

Descarga archivos de extensión Time Cost Calculator en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Time Cost Calculator Time Cost Calculator
ID mbkfdbnilfllooepngjaigpmnhfhecbd
URL Oficial https://chromewebstore.google.com/detail/time-cost-calculator/mbkfdbnilfllooepngjaigpmnhfhecbd
Descripción This extension can be used to calculate the cost of time spent in a meeting
Tamaño del Archivo 2.17 MB
Cantidad de Instalaciones 184
Versión Actual 0.0.2
Última Actualización 2021-02-16
Fecha de Publicación 2021-02-10
Desarrollador Sunny Shahi
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
            ]
        }
    ]
}