Time Cost Calculator

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

Apa itu Time Cost Calculator?

Time Cost Calculator adalah ekstensi Chrome yang dikembangkan oleh Sunny Shahi, dan fitur utamanya adalah "This extension can be used to calculate the cost of time spent in a meeting".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Time Cost Calculator

Unduh file ekstensi Time Cost Calculator dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Time Cost Calculator Time Cost Calculator
ID mbkfdbnilfllooepngjaigpmnhfhecbd
URL Resmi https://chromewebstore.google.com/detail/time-cost-calculator/mbkfdbnilfllooepngjaigpmnhfhecbd
Deskripsi This extension can be used to calculate the cost of time spent in a meeting
Ukuran File 2.17 MB
Jumlah Instalasi 184
Versi Saat Ini 0.0.2
Terakhir Diperbarui 2021-02-16
Tanggal Publikasi 2021-02-10
Pengembang Sunny Shahi
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
            ]
        }
    ]
}