Time Cost Calculator

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

ما هو Time Cost Calculator؟

Time Cost Calculator هو إضافة Chrome تم تطويرها بواسطة Sunny Shahi، والميزة الرئيسية لها هي "This extension can be used to calculate the cost of time spent in a meeting".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Time Cost Calculator

قم بتنزيل ملفات الامتداد Time Cost Calculator بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
            ]
        }
    ]
}