Time Cost Calculator
This extension can be used to calculate the cost of time spent in a meeting
Qu'est-ce que Time Cost Calculator ?
Time Cost Calculator est une extension Chrome développée par Sunny Shahi, et sa fonction principale est "This extension can be used to calculate the cost of time spent in a meeting".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Time Cost Calculator
Téléchargez les fichiers d'extension Time Cost Calculator au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Time Cost Calculator |
ID | mbkfdbnilfllooepngjaigpmnhfhecbd |
URL Officiel | https://chromewebstore.google.com/detail/time-cost-calculator/mbkfdbnilfllooepngjaigpmnhfhecbd |
Description | This extension can be used to calculate the cost of time spent in a meeting |
Taille du Fichier | 2.17 MB |
Nombre d'Installations | 184 |
Version Actuelle | 0.0.2 |
Dernière Mise à Jour | 2021-02-16 |
Date de Publication | 2021-02-10 |
Développeur | Sunny Shahi |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } ] } |