Time Cost Calculator
This extension can be used to calculate the cost of time spent in a meeting
Was ist Time Cost Calculator?
Time Cost Calculator ist eine Chrome-Erweiterung, die von Sunny Shahi entwickelt wurde, und ihr Hauptmerkmal ist "This extension can be used to calculate the cost of time spent in a meeting".
Erweiterungsscreenshots
Time Cost Calculator-Erweiterungs-CRX-Datei herunterladen
Laden Sie Time Cost Calculator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Time Cost Calculator |
ID | mbkfdbnilfllooepngjaigpmnhfhecbd |
Offizielle URL | https://chromewebstore.google.com/detail/time-cost-calculator/mbkfdbnilfllooepngjaigpmnhfhecbd |
Beschreibung | This extension can be used to calculate the cost of time spent in a meeting |
Dateigröße | 2.17 MB |
Installationsanzahl | 184 |
Aktuelle Version | 0.0.2 |
Letztes Update | 2021-02-16 |
Veröffentlichungsdatum | 2021-02-10 |
Entwickler | Sunny Shahi |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } ] } |