Time Cost Calculator

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

Time Cost Calculator là gì?

Time Cost Calculator là một tiện ích mở rộng Chrome được phát triển bởi Sunny Shahi, và tính năng chính của nó là "This extension can be used to calculate the cost of time spent in a meeting".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Time Cost Calculator

Tải xuống các tệp mở rộng Time Cost Calculator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Time Cost Calculator Time Cost Calculator
ID mbkfdbnilfllooepngjaigpmnhfhecbd
URL Chính Thức https://chromewebstore.google.com/detail/time-cost-calculator/mbkfdbnilfllooepngjaigpmnhfhecbd
Mô tả This extension can be used to calculate the cost of time spent in a meeting
Kích Thước Tệp 2.17 MB
Số Lần Cài Đặt 184
Phiên Bản Hiện Tại 0.0.2
Cập Nhật Lần Cuối 2021-02-16
Ngày Phát Hành 2021-02-10
Nhà Phát Triển Sunny Shahi
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}