Time Cost Calculator
This extension can be used to calculate the cost of time spent in a meeting
Hvad er Time Cost Calculator?
Time Cost Calculator er en Chrome-udvidelse udviklet af Sunny Shahi, og dens hovedfunktion er "This extension can be used to calculate the cost of time spent in a meeting".
Udvidelsesskærmbilleder
Download Time Cost Calculator-udvidelses-CRX-fil
Download Time Cost Calculator-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Time Cost Calculator |
ID | mbkfdbnilfllooepngjaigpmnhfhecbd |
Officiel URL | https://chromewebstore.google.com/detail/time-cost-calculator/mbkfdbnilfllooepngjaigpmnhfhecbd |
Beskrivelse | This extension can be used to calculate the cost of time spent in a meeting |
Filstørrelse | 2.17 MB |
Antal Installationer | 184 |
Nuværende Version | 0.0.2 |
Senest Opdateret | 2021-02-16 |
Udgivelsesdato | 2021-02-10 |
Udvikler | Sunny Shahi |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } ] } |