Time Cost Calculator
This extension can be used to calculate the cost of time spent in a meeting
Wat is Time Cost Calculator?
Time Cost Calculator is een Chrome-extensie ontwikkeld door Sunny Shahi, en de belangrijkste functie is "This extension can be used to calculate the cost of time spent in a meeting".
Extensie Screenshots
Download het CRX-bestand van de extensie Time Cost Calculator
Download Time Cost Calculator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Time Cost Calculator |
ID | mbkfdbnilfllooepngjaigpmnhfhecbd |
Officiële URL | https://chromewebstore.google.com/detail/time-cost-calculator/mbkfdbnilfllooepngjaigpmnhfhecbd |
Beschrijving | This extension can be used to calculate the cost of time spent in a meeting |
Bestandsgrootte | 2.17 MB |
Aantal Installaties | 184 |
Huidige Versie | 0.0.2 |
Laatst Bijgewerkt | 2021-02-16 |
Publicatiedatum | 2021-02-10 |
Ontwikkelaar | Sunny Shahi |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } ] } |