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
Eメール [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"
            ]
        }
    ]
}