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 με φίλους για εύκολη εγκατάσταση των επεκτάσεων 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
Ηλεκτρονικό ταχυδρομείο [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"
            ]
        }
    ]
}